Spigot-Plugin to make every Player have shared hearts, tracking both damage and healing
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import shutil
|
|
import subprocess
|
|
|
|
pluginPath = "out/artifacts/Sharehealth/Sharehealth.jar"
|
|
|
|
# local server
|
|
shutil.copy2(pluginPath, "server/plugins")
|
|
|
|
# remote server
|
|
subprocess.run(["scp", pluginPath, "minecraft@130.61.179.201:/home/minecraft/servers/flattest/plugins"])
|
|
|
|
|