Made the monkey recycler consume the proper amount of monkeys, instead of 5 always.

This commit is contained in:
Crazylemon
2015-09-22 12:25:12 -07:00
parent fea9ce1e78
commit 2dab5fb9fe
@@ -78,7 +78,7 @@
if(grinded >= required_grind)
user << "\blue The machine hisses loudly as it condenses the grinded monkey meat. After a moment, it dispenses a brand new monkey cube."
playsound(src.loc, 'sound/machines/hiss.ogg', 50, 1)
grinded -= 5
grinded -= required_grind
new /obj/item/weapon/reagent_containers/food/snacks/monkeycube/wrapped(src.loc)
user << "\blue The machine's display flashes that it has [grinded] monkeys worth of material left."
else