File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
code/controllers/subsystem Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -199,22 +199,22 @@ var/datum/subsystem/supply_shuttle/SSsupply_shuttle
199
199
if (istype(TTV . attached_device,/ obj / item/ device/ assembly/ timer))
200
200
var /obj /item/device/assembly/timer/TM = TTV . attached_device
201
201
if (TM . timing)
202
- timevalue = clamp(TM . time,600 , 1200 )
202
+ timevalue = clamp(TM . time,60 , 120 )
203
203
switch (TM . time)
204
- if (0 to 600 )
204
+ if (0 to 60 )
205
205
goes_off = GOES_OFF_SHUTTLE
206
- if (600 to 1200 )
206
+ if (60 to 120 )
207
207
goes_off = GOES_OFF_CENTCOM
208
- if (1200 to INFINITY )
208
+ if (120 to INFINITY )
209
209
goes_off = BOMB_DISARMED
210
210
else if (istype(TTV . attached_device,/ obj / item/ device/ assembly/ prox_sensor))
211
211
var /obj /item/device/assembly/prox_sensor/PS = TTV . attached_device
212
212
if (PS . scanning)
213
213
goes_off = GOES_OFF_CENTCOM
214
- timevalue = 600
214
+ timevalue = 60
215
215
else if (PS . timing)
216
- timevalue = clamp(PS . time,600 , 1200 )
217
- if (PS . time < 1200 )
216
+ timevalue = clamp(PS . time,60 , 120 )
217
+ if (PS . time < 120 )
218
218
goes_off = GOES_OFF_CENTCOM
219
219
else
220
220
goes_off = BOMB_DISARMED
You can’t perform that action at this time.
0 commit comments