mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
really fixing the bug
This commit is contained in:
parent
1b05562a9e
commit
a7f7a50ae0
@ -697,7 +697,7 @@ class ServerInstance:
|
||||
version_param = version[0][0].split(".")
|
||||
version_major = int(version_param[0])
|
||||
version_minor = int(version_param[1])
|
||||
if version_param.length > 2:
|
||||
if len(version_param) > 2:
|
||||
version_sub = int(version_param[2])
|
||||
else:
|
||||
version_sub = 0
|
||||
@ -782,7 +782,7 @@ class ServerInstance:
|
||||
server_obj.execution_command = execution_command
|
||||
Console.debug(SUCCESSMSG)
|
||||
else:
|
||||
# NEW VERSION >= 1.20
|
||||
# NEW VERSION >= 1.20.3
|
||||
# (executable jar is back in server dir)
|
||||
|
||||
# Retrieving the executable jar filename
|
||||
|
Loading…
Reference in New Issue
Block a user