Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions code/modules/food/customizables.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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 << "<span class='notice'> You think you can see [whatsinside] in there.</span>"
usr << "<span class='notice'> You think you can see [whatsinside] in there.</span>"