From 05937cecc2f0664f86b6337e68b89eed7e8cd95b Mon Sep 17 00:00:00 2001 From: Mike Long Date: Sun, 10 Apr 2016 20:23:52 -0400 Subject: [PATCH] Fixes the other compile errors. --- code/modules/events/ion_storm.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/events/ion_storm.dm b/code/modules/events/ion_storm.dm index 9c116d87e58..7e1accac584 100644 --- a/code/modules/events/ion_storm.dm +++ b/code/modules/events/ion_storm.dm @@ -493,7 +493,7 @@ if(40 to 41)// the X is now named Y switch(rand(1,5)) //What is being renamed? if(1)//Areas - switch(rand(1,4)//What is the area being renamed to? + switch(rand(1,4))//What is the area being renamed to? if(1) message = "[ionarea] IS NOW NAMED [ioncrew1]." if(2) @@ -503,7 +503,7 @@ if(4) message = "[ionarea] IS NOW NAMED [ionthreats]." if(2)//Crew - switch(rand(1,5)//What is the crew being renamed to? + switch(rand(1,5))//What is the crew being renamed to? if(1) message = "ALL [ioncrew1] ARE NOW NAMED [ionarea]." if(2) @@ -515,7 +515,7 @@ if(5) message = "ALL [ioncrew1] ARE NOW NAMED [ionthreats]." if(3)//Races - switch(rand(1,4)//What is the race being renamed to? + switch(rand(1,4))//What is the race being renamed to? if(1) message = "ALL [ionspecies] ARE NOW NAMED [ionarea]." if(2) @@ -525,7 +525,7 @@ if(4) message = "ALL [ionspecies] ARE NOW NAMED [ionthreats]." if(4)//Objects - switch(rand(1,4)//What is the object being renamed to? + switch(rand(1,4))//What is the object being renamed to? if(1) message = "ALL [ionobjects] ARE NOW NAMED [ionarea]." if(2) @@ -535,7 +535,7 @@ if(4) message = "ALL [ionobjects] ARE NOW NAMED [ionthreats]." if(5)//Threats - switch(rand(1,4)//What is the object being renamed to? + switch(rand(1,4))//What is the object being renamed to? if(1) message = "ALL [ionthreats] ARE NOW NAMED [ionarea]." if(2)