- Update **ReadMe.md** with: - Spark console command syntax correction - New **Adventure Platform Mod** and **Better Fabric Console** entries - Resolved TODO items: server template setup and datapack sync - Add **bash/init-local-server.sh** to automate server template deployment - Enhance **bash/export-serverpack.sh** with datapack synchronization via `rsync`
7 lines
287 B
Bash
Executable File
7 lines
287 B
Bash
Executable File
#!/bin/bash
|
||
# MC 26.1.2 требует Java 25 (class file 69). Консоль с историей — better-fabric-console.
|
||
# epsilon - 25
|
||
# delta - 21
|
||
JAVA=/home/dimti/.local/share/FreesmLauncher/java/java-runtime-epsilon/bin/java
|
||
exec "$JAVA" -Xmx2G -jar __FABRIC_SERVER_JAR__ nogui
|