Renames QDEL_LIST to QDEL_LIST_CONTENTS (#20006)

* Renames QDEL_LIST to QDEL_LIST_CONTENTS

* derp
This commit is contained in:
AffectedArc07
2022-12-29 14:28:40 +00:00
committed by GitHub
parent 6486a7e109
commit e91b6c94f7
72 changed files with 111 additions and 111 deletions
+1 -1
View File
@@ -136,7 +136,7 @@
update_appearance(UPDATE_DESC|UPDATE_ICON)
/obj/item/ammo_box/Destroy()
QDEL_LIST(stored_ammo)
QDEL_LIST_CONTENTS(stored_ammo)
stored_ammo = null
return ..()
+1 -1
View File
@@ -20,7 +20,7 @@
. += "<span class='notice'>[rockets.len] / [max_rockets] rockets.</span>"
/obj/item/gun/rocketlauncher/Destroy()
QDEL_LIST(rockets)
QDEL_LIST_CONTENTS(rockets)
rockets = null
return ..()
+1 -1
View File
@@ -124,7 +124,7 @@
create_reagents(reservoir_volume)
/obj/item/gun/syringe/rapidsyringe/Destroy()
QDEL_LIST(syringes)
QDEL_LIST_CONTENTS(syringes)
if(chambered)
if(chambered.BB)
+1 -1
View File
@@ -37,7 +37,7 @@
/obj/item/gun/throw/Destroy()
QDEL_NULL(to_launch)
QDEL_LIST(loaded_projectiles)
QDEL_LIST_CONTENTS(loaded_projectiles)
loaded_projectiles = null
return ..()