mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 00:21:11 +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:
@@ -304,8 +304,12 @@
|
||||
|
||||
if (light_angle)
|
||||
var/ndir
|
||||
if (istype(top_atom, /mob) && top_atom:facing_dir)
|
||||
ndir = top_atom:facing_dir
|
||||
if(istype(top_atom, /mob) && top_atom:facing_dir)
|
||||
var/mob/mob = top_atom
|
||||
if(mob.facing_dir)
|
||||
ndir = mob.facing_dir
|
||||
else
|
||||
ndir = top_atom.dir
|
||||
else
|
||||
ndir = top_atom.dir
|
||||
|
||||
|
||||
Reference in New Issue
Block a user