Moves misplaced var from airlock_control.dm

Moved explosion_resistance from airlock_control.dm to airlock.dm proper.
This commit is contained in:
mwerezak
2014-07-15 11:21:00 -04:00
committed by ZomgPonies
parent ccb425bd44
commit 25c2fb2519
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -25,6 +25,7 @@
icon_state = "door_closed"
power_channel = ENVIRON
explosion_resistance = 15
var/aiControlDisabled = 0 //If 1, AI control is disabled until the AI hacks back in and disables the lock. If 2, the AI has bypassed the lock. If -1, the control is enabled but the AI had bypassed it earlier, so if it is disabled again the AI would have no trouble getting back in.
var/hackProof = 0 // if 1, this door can't be hacked by the AI
var/secondsMainPowerLost = 0 //The number of seconds until power is restored.
@@ -6,7 +6,6 @@ obj/machinery/door/airlock
var/frequency
var/shockedby = list()
var/datum/radio_frequency/radio_connection
explosion_resistance = 15
obj/machinery/door/airlock/proc/can_radio()
if( !arePowerSystemsOn() || (stat & NOPOWER) || isWireCut(AIRLOCK_WIRE_AI_CONTROL) )