Merge pull request #628 from Citadel-Station-13/upstream-merge-26642

[MIRROR] Fixes Linux buildscript chime when server ready
This commit is contained in:
LetterJay
2017-05-02 11:14:56 -05:00
committed by GitHub

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))