no meta-gaming

This commit is contained in:
Fox-McCloud
2015-12-31 00:44:21 -05:00
parent ce2eb1c0ad
commit c3d5311c32
5 changed files with 12 additions and 4 deletions
+3
View File
@@ -91,6 +91,9 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12
throw EXCEPTION("requestEvac(): There is no emergency shuttle! The game will be unresolvable. This is likely due to a mapping error")
return
if(world.time - round_start_time < config.shuttle_refuel_delay)
user << "The emergency shuttle is refueling. Please wait another [abs(round(((world.time - round_start_time) - config.shuttle_refuel_delay)/600))] minutes before trying again."
return
switch(emergency.mode)
if(SHUTTLE_RECALL)
+4
View File
@@ -106,6 +106,8 @@
var/auto_toggle_ooc_during_round = 0
var/shuttle_refuel_delay = 12000
//Used for modifying movement speed for mobs.
//Unversal modifiers
var/run_speed = 0
@@ -599,6 +601,8 @@
config.bones_can_break = value
if("limbs_can_break")
config.limbs_can_break = value
if("shuttle_refuel_delay")
config.shuttle_refuel_delay = text2num(value)
if("reactionary_explosions")
config.reactionary_explosions = 1
if("bombcap")