update MultiMystery.py to reflect:

merge HintedMultiServer into MultiServer
This commit is contained in:
Fabian Dill 2020-01-15 00:36:51 +01:00
parent 5d217511fe
commit aa0ac7aea8
1 changed files with 1 additions and 2 deletions

View File

@ -121,5 +121,4 @@ if __name__ == "__main__":
os.remove(file)
print(f"Removed file {file} that is now present in the zipfile")
serverfile = "HintedMultiServer.py" if os.path.exists("HintedMultiServer.py") else "MultiServer.py"
subprocess.call(f"py -{py_version} {serverfile} --multidata {os.path.join(outputpath, multidataname)}")
subprocess.call(f"py -{py_version} MultiServer.py --multidata {os.path.join(outputpath, multidataname)}")