Fixes Linux buildscript chime when server ready

This commit is contained in:
Jack Edge
2017-04-27 11:31:36 +01:00
parent 36ae39e4db
commit a1832ee306

View File

@@ -47,7 +47,7 @@ def stage3(profile_mode=False):
try:
while p.returncode is None:
stdout = p.stdout.readline()
if "Initializations complete." in stdout:
if "Initializations complete" in stdout:
play("sound/misc/server-ready.ogg")
time_taken = time.time() - start_time
print("{} seconds taken to fully start".format(time_taken))