58dc769bb5
The problem here is that MinecraftServer.save(..), will attempt to sleep whilst all pending chunks are written to disk, however due to various and complicated bugs, it will wait for an incorrect amount of chunks, which may cause it to sleep for an overly long amount of time. Instead we will mimic the save-all command in its behaviour, which is both safe and performant. |
||
---|---|---|
Bukkit@1227b64c8a | ||
Bukkit-Patches | ||
CraftBukkit@bafd45061f | ||
CraftBukkit-Patches | ||
.gitmodules | ||
.travis.yml | ||
README.md | ||
applyPatches.sh | ||
pom.xml | ||
rebuildPatches.sh | ||
upstreamMerge.sh |
README.md
Spigot
High performance Minecraft server implementation
How To
Init a Craftbukkit and Bukkit module : git submodule update --init
Apply Patches : ./applyPatches.sh
Create patch for server
cd Spigot-Server
Add your file for commit : git add <file>
Commit : git commit -m <msg>
cd ..
Create Patch ./rebuildPatches.sh
Create patch for API
cd Spigot-API
Add your file for commit : git add <file>
Commit : git commit -m <msg>
cd ..
Create Patch ./rebuildPatches.sh
Compilation
We use maven to handle our dependencies.
- Install Maven 3
- Clone this repo and:
mvn clean install