Merge pull request #6076 from Sharkmare/patch-33

Keeping track of how many recyclings happaned
This commit is contained in:
Nadyr
2023-04-25 20:49:05 -04:00
committed by GitHub
@@ -111,6 +111,7 @@
if(items_taken >= voracity)
break
if(items_taken) //Lazy coder sound design moment.
Recycled_Items = Recycled_Items + items_taken
playsound(src, 'sound/items/poster_being_created.ogg', 50, 1)
playsound(src, 'sound/items/electronic_assembly_emptying.ogg', 50, 1)
playsound(src, 'sound/effects/metalscrape2.ogg', 50, 1)
@@ -140,3 +141,5 @@
/obj/machinery/button/garbosystem/attack_hand(mob/living/user as mob)
if(grinder)
return grinder.attack_hand(user)
var/Recycled_Items = 0