mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-13 17:07:53 +01:00
New opendream pragmas (#20260)
Enabled new opendream pragmas Fixed some runtime access check operators (`:`) around the codebase (not all, some are unfixable as they're used in macros) No player facing changes (hopefully)
This commit is contained in:
@@ -82,8 +82,10 @@ PROCESSING_SUBSYSTEM_DEF(airflow)
|
||||
continue
|
||||
|
||||
step_towards(target, target.airflow_dest)
|
||||
if (ismob(target) && target:client)
|
||||
target:setMoveCooldown(vsc.airflow_mob_slowdown)
|
||||
if(ismob(target))
|
||||
var/mob/target_mob = target
|
||||
if(target_mob.client)
|
||||
target_mob:setMoveCooldown(vsc.airflow_mob_slowdown)
|
||||
|
||||
if (MC_TICK_CHECK)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user