13 lines
377 B
Python
13 lines
377 B
Python
import os
|
|
import gen
|
|
|
|
MIN_RAM="1024M"
|
|
MAX_RAM="2048M"
|
|
JVM_DEBUG_PORT = 25577
|
|
|
|
|
|
if (os.getcwd().endswith("SpigotPluginBaseTools/")):
|
|
os.chdir("../")
|
|
|
|
os.chdir(gen.DEV_SERVER_PATH)
|
|
os.system("java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address={port} -Xms{minram} -Xmx{maxram} -jar spigot.jar".format(port = JVM_DEBUG_PORT, minram = MIN_RAM, maxram = MAX_RAM)) |