fix infinite ratburgers (#7711)

fixes https://github.com/PolarisSS13/Polaris/issues/7709 (mice used in mouse burgers not being used up)
This commit is contained in:
Meghan-Rossi
2020-10-16 23:05:13 -07:00
committed by GitHub
parent f365aa4e98
commit 151bafc768
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -208,7 +208,7 @@
var/obj/item/I = locate(i) in container
if (I && I.reagents)
I.reagents.trans_to_holder(buffer,I.reagents.total_volume)
qdel(I)
qdel(I)
//Find fruits
if (fruit && fruit.len)
@@ -0,0 +1,4 @@
author: Meghan-Rossi
delete-after: True
changes:
- bugfix: "Cooking a mouse into a mouseburger now uses up the mouse."