Fix THE AI HAS WON!<br />

This commit is contained in:
Rob Nelson
2013-11-04 23:29:23 -08:00
parent adad08e07e
commit 1438304e26
2 changed files with 3 additions and 3 deletions

View File

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

View File

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