replaces atom.initialized with ATOM_INITIALIZED

refactors atom/var/flags to atom_flags and area_flags
moves NOBLOODY, NOBLUDGEON, and PHORONGUARD to item_flags instead of atom_flags
corrects various misapplied flags
This commit is contained in:
spookerton
2022-10-18 09:36:36 +01:00
parent 650ee09942
commit 3abdbbaa1c
150 changed files with 414 additions and 431 deletions
+3 -3
View File
@@ -312,10 +312,10 @@
if(!length(target))
var/datum/C = target
if(!C.signal_enabled)
return NONE
return EMPTY_BITFIELD
var/proctype = C.signal_procs[src][sigtype]
return NONE | CallAsync(C, proctype, arguments)
. = NONE
return EMPTY_BITFIELD | CallAsync(C, proctype, arguments)
. = EMPTY_BITFIELD
for(var/I in target)
var/datum/C = I
if(!C.signal_enabled)