mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
Fix THE AI HAS WON!<br />
This commit is contained in:
@@ -80,7 +80,7 @@ def Compile(serverState):
|
||||
stdout,stderr = subprocess.Popen(COMPILE_COMMAND,shell=True, stdout=subprocess.PIPE).communicate()
|
||||
failed=False
|
||||
if stdout:
|
||||
for line in stdout.split():
|
||||
for line in stdout.split('\n'):
|
||||
if 'error:' in line:
|
||||
send_nudge('COMPILE ERROR: {0}'.format(line))
|
||||
failed=True
|
||||
|
||||
@@ -110,8 +110,8 @@
|
||||
|
||||
|
||||
/datum/game_mode/malfunction/proc/capture_the_station()
|
||||
world << {"<FONT size = 3><B>The AI has won!</B></FONT><br />
|
||||
<B>It has fully taken control of all of [station_name()]'s systems.</B>"}
|
||||
world << {"<FONT size = 3><B>The AI has won!</B></FONT>
|
||||
<B>It has fully taken control of all of [station_name()]'s systems.</B>"}
|
||||
|
||||
to_nuke_or_not_to_nuke = 1
|
||||
for(var/datum/mind/AI_mind in malf_ai)
|
||||
|
||||
Reference in New Issue
Block a user