diff --git a/DLLSocket/server_controller.py b/DLLSocket/server_controller.py index 00c048c6a3d..94af7f1b27b 100644 --- a/DLLSocket/server_controller.py +++ b/DLLSocket/server_controller.py @@ -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 diff --git a/code/game/gamemodes/malfunction/malfunction.dm b/code/game/gamemodes/malfunction/malfunction.dm index a8c2d4ac0a8..12250a3996c 100644 --- a/code/game/gamemodes/malfunction/malfunction.dm +++ b/code/game/gamemodes/malfunction/malfunction.dm @@ -110,8 +110,8 @@ /datum/game_mode/malfunction/proc/capture_the_station() - world << {"The AI has won!
- It has fully taken control of all of [station_name()]'s systems."} + world << {"The AI has won! +It has fully taken control of all of [station_name()]'s systems."} to_nuke_or_not_to_nuke = 1 for(var/datum/mind/AI_mind in malf_ai)