Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
FunnyMan3595 authored Jan 20, 2025
1 parent fdbd2b2 commit 08d4ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/controllers/subsystem/SSair.dm
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ SUBSYSTEM_DEF(air)
// All atmos stuff assumes MILLA is synchronous. Ensure it actually is.
var/now = world.timeofday + (world.tick_lag * world.tick_usage) / 100
var/elapsed = now - last_complete_tick
if(!milla_idle || (elapsed >= 0 && elapsed < self_wait))
if(!milla_idle || length(sleepers) || (elapsed >= 0 && elapsed < self_wait))
return

if(last_tick_start <= last_complete_tick)
Expand Down

0 comments on commit 08d4ab7

Please sign in to comment.