mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 11:37:40 +01:00
Renames QDEL_LIST to QDEL_LIST_CONTENTS (#20006)
* Renames QDEL_LIST to QDEL_LIST_CONTENTS * derp
This commit is contained in:
@@ -172,7 +172,7 @@ GLOBAL_DATUM_INIT(welding_sparks, /mutable_appearance, mutable_appearance('icons
|
||||
if(ismob(loc))
|
||||
var/mob/m = loc
|
||||
m.unEquip(src, 1)
|
||||
QDEL_LIST(actions)
|
||||
QDEL_LIST_CONTENTS(actions)
|
||||
master = null
|
||||
return ..()
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
|
||||
/obj/item/grenade/chem_grenade/Destroy()
|
||||
QDEL_NULL(nadeassembly)
|
||||
QDEL_LIST(beakers)
|
||||
QDEL_LIST_CONTENTS(beakers)
|
||||
return ..()
|
||||
|
||||
/obj/item/grenade/chem_grenade/examine(mob/user)
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
/obj/item/pneumatic_cannon/Destroy()
|
||||
QDEL_NULL(tank)
|
||||
QDEL_LIST(loadedItems)
|
||||
QDEL_LIST_CONTENTS(loadedItems)
|
||||
return ..()
|
||||
|
||||
/obj/item/pneumatic_cannon/examine(mob/user)
|
||||
|
||||
@@ -267,7 +267,7 @@ LINEN BINS
|
||||
var/obj/item/hidden = null
|
||||
|
||||
/obj/structure/bedsheetbin/Destroy()
|
||||
QDEL_LIST(sheets)
|
||||
QDEL_LIST_CONTENTS(sheets)
|
||||
if(hidden)
|
||||
hidden.forceMove(get_turf(src))
|
||||
hidden = null
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
update_icon(UPDATE_OVERLAYS)
|
||||
|
||||
/obj/structure/dispenser/Destroy()
|
||||
QDEL_LIST(stored_plasma_tanks)
|
||||
QDEL_LIST(stored_oxygen_tanks)
|
||||
QDEL_LIST_CONTENTS(stored_plasma_tanks)
|
||||
QDEL_LIST_CONTENTS(stored_oxygen_tanks)
|
||||
return ..()
|
||||
|
||||
/obj/structure/dispenser/proc/initialize_tanks()
|
||||
|
||||
Reference in New Issue
Block a user