added multi bool setting and switched hotbar replace to it

This commit is contained in:
2024-08-25 14:30:18 +02:00
parent f187a867af
commit 1ef4f86a14
5 changed files with 194 additions and 13 deletions

View File

@ -58,3 +58,10 @@ tasks.register('copyJarToServer', Exec) {
commandLine 'scp', 'build/libs/spawn-1.0-all.jar', 'root@10.20.6.1:/home/minecraft/server/plugins'
}
tasks.register('copyJarToTestServer', Exec) {
dependsOn shadowJar
mustRunAfter shadowJar
commandLine 'cp', 'build/libs/spawn-1.0-all.jar', '/home/elias/Dokumente/mcTestServer/plugins/spawn-1.0-all.jar'
}