diff --git a/code/game/objects/items/devices/geiger_counter.dm b/code/game/objects/items/devices/geiger_counter.dm index 01175969bd..aa54ee6219 100644 --- a/code/game/objects/items/devices/geiger_counter.dm +++ b/code/game/objects/items/devices/geiger_counter.dm @@ -54,12 +54,12 @@ if(current_tick_amount) grace = RAD_GRACE_PERIOD - last_tick_amount = current_tick_amount + last_tick_amount = current_tick_amount - else if(!(obj_flags & EMAGGED)) - grace-- - if(grace <= 0) - radiation_count = 0 + else if(!(obj_flags & EMAGGED)) + grace-- + if(grace <= 0) + radiation_count = 0 current_tick_amount = 0