From c9bb3ddbc0898ad3e2531ed1119639c876611f10 Mon Sep 17 00:00:00 2001 From: Lixfel Date: Sat, 26 Dec 2020 23:47:23 +0100 Subject: [PATCH] Initial commit --- README.md | 25 +++++++++++++++++++++++++ applyPatches.sh | 6 ++++++ 2 files changed, 31 insertions(+) create mode 100644 README.md create mode 100755 applyPatches.sh 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