From 83ec4b7a4e2af9420e4feffef93f0718531f6fce Mon Sep 17 00:00:00 2001 From: FalseIncarnate Date: Fri, 26 Jun 2015 16:36:16 -0400 Subject: [PATCH] del() Wars Episode 6: Return of the qdel() Changes del() calls to qdel() calls --- code/modules/clothing/glasses/glasses.dm | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 0f88865f53e..8ddeaf1f513 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -33,8 +33,8 @@ var/obj/item/clothing/glasses/meson/prescription/P = new /obj/item/clothing/glasses/meson/prescription(get_turf(H)) H << "You fit \the [src.name] with lenses from \the [O.name]." H.put_in_hands(P) - del(O) - del(src) + qdel(O) + qdel(src) return ..() @@ -75,7 +75,7 @@ H << "You salvage the prescription lenses from \the [src.name]." H.put_in_hands(M) H.put_in_hands(R) - del(src) + qdel(src) return ..() @@ -194,8 +194,8 @@ var/obj/item/clothing/glasses/sunglasses/prescription/P = new /obj/item/clothing/glasses/sunglasses/prescription(get_turf(H)) H << "You fit \the [src.name] with lenses from \the [O.name]." H.put_in_hands(P) - del(O) - del(src) + qdel(O) + qdel(src) return ..() @@ -315,7 +315,7 @@ H << "You salvage the prescription lenses from \the [src.name]." H.put_in_hands(S) H.put_in_hands(R) - del(src) + qdel(src) return ..() @@ -353,8 +353,8 @@ var/obj/item/clothing/glasses/sunglasses/sechud/prescription/P = new /obj/item/clothing/glasses/sunglasses/sechud/prescription(get_turf(H)) H << "You fit \the [src.name] with lenses from \the [O.name]." H.put_in_hands(P) - del(O) - del(src) + qdel(O) + qdel(src) return ..() @@ -380,7 +380,7 @@ H << "You salvage the prescription lenses from \the [src.name]." H.put_in_hands(S) H.put_in_hands(R) - del(src) + qdel(src) return ..()