renames flags to atom_flags for, well, atoms; transitions some reasonable atom flags to be more, well, obvious (#4837)

Co-authored-by: VM_USER <VM_USER>
This commit is contained in:
silicons
2022-12-15 18:54:20 +01:00
committed by GitHub
co-authored by VM_USER <VM_USER>
parent 104dd3ba95
commit fa3856bf7f
158 changed files with 322 additions and 345 deletions
+1 -1
View File
@@ -112,7 +112,7 @@
// Splatter anything under us that survived the explosion.
if(value != SD_EMPTY_TILE && T.contents.len)
for(var/atom/movable/AM in T)
if(!(AM.flags & ATOM_ABSTRACT) && !istype(AM, /mob/observer))
if(!(AM.atom_flags & ATOM_ABSTRACT) && !istype(AM, /mob/observer))
qdel(AM)
// Also spawn doors and loot.
@@ -53,11 +53,11 @@
// Destroy turf contents.
for(var/obj/O in origin)
if((O.flags & ATOM_ABSTRACT))
if((O.atom_flags & ATOM_ABSTRACT))
continue
qdel(O) //crunch
for(var/obj/O in T)
if((O.flags & ATOM_ABSTRACT))
if((O.atom_flags & ATOM_ABSTRACT))
continue
qdel(O) //crunch