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."