Update CompoundTag.class: Replace the existing binary file with an updated version to ensure compatibility and improve functionality.

This commit is contained in:
Leonid Pershin
2026-05-07 23:10:46 +03:00
parent 4ef6f48cd0
commit ce33648425
4033 changed files with 77063 additions and 98 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env sh
set -eu
mkdir -p logs
echo "Starting server in background (no GUI)..."
nohup java @user_jvm_args.txt @libraries/net/neoforged/neoforge/21.1.228/unix_args.txt nogui "$@" >> logs/server-headless.log 2>&1 &
echo $! > server.pid
echo "Server started with PID $(cat server.pid)"
echo "Log file: logs/server-headless.log"