From 875ebd3bf92c239db586b13153eb7d66376ce64b Mon Sep 17 00:00:00 2001 From: Iamgoofball Date: Fri, 18 Jul 2014 17:20:33 -0700 Subject: [PATCH] should fix #779 this should fix #779, needs to be tested tho --- code/modules/food/customizables.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/food/customizables.dm b/code/modules/food/customizables.dm index 336198a476..be4342ce47 100644 --- a/code/modules/food/customizables.dm +++ b/code/modules/food/customizables.dm @@ -361,7 +361,7 @@ /obj/item/weapon/reagent_containers/food/snacks/customizable/Destroy() for(var/obj/item/O in ingredients) - del(O) // qdelling certain foods causes runtimes up the ass sometimes, best just to standard del() + Destroy(O) ..() /obj/item/weapon/reagent_containers/food/snacks/customizable/examine() @@ -517,11 +517,11 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/customizable/Destroy() for(var/obj/item/O in ingredients) - del(O) // qdelling certain foods causes runtimes up the ass sometimes, best just to standard del() + Destroy(O) ..() /obj/item/weapon/reagent_containers/food/drinks/bottle/customizable/examine() ..() var/whatsinside = pick(ingredients) - usr << " You think you can see [whatsinside] in there." \ No newline at end of file + usr << " You think you can see [whatsinside] in there."