commit c9bb3ddbc0898ad3e2531ed1119639c876611f10 Author: Lixfel Date: Sat Dec 26 23:47:23 2020 +0100 Initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..3220c75 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +SteamSpigot +=========== + +The SteamWar-Spigot-Patches + +How to patch Spigot +------------------- + +Clone this repository into your BuildTools.jar directory. + +Run BuildTools.jar with --rev \[Your Version\] + +Run ./applyPatches.sh + +Enjoy your patched server in \[BuildTools directory\]/Spigot/Spigot-Server/target. + + +How to create a Patch +--------------------- + +Run BuildTools.jar with --rev \[Your Version\] + +Edit the \[BuildTools directory\]/Spigot/Spigot-Server/src as you wish. + +Create a patch with the changes in Spigot-Server and save this patch file in SteamWar-Patches. diff --git a/applyPatches.sh b/applyPatches.sh new file mode 100755 index 0000000..ba87779 --- /dev/null +++ b/applyPatches.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +git apply --unsafe-paths --directory=../Spigot/Spigot-Server SteamWar-Patches/* + +cd ../Spigot/Spigot-Server +mvn package