mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 12:07:27 +01:00
Renames QDEL_LIST to QDEL_LIST_CONTENTS (#20006)
* Renames QDEL_LIST to QDEL_LIST_CONTENTS * derp
This commit is contained in:
@@ -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 ..()
|
||||
|
||||
|
||||
@@ -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 ..()
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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 ..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user