From 79af914dc1019dcf985c821c2b6ab0f34c864043 Mon Sep 17 00:00:00 2001 From: SteelSlayer Date: Thu, 7 Nov 2019 17:53:38 -0600 Subject: [PATCH] Chemistry bag QoL improvement --- code/modules/reagents/chemistry/machinery/reagentgrinder.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm index 41a0a747118..c28eaf39fa1 100644 --- a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm +++ b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm @@ -176,7 +176,7 @@ //Fill machine with a bag! if(istype(I, /obj/item/storage/bag)) var/obj/item/storage/bag/B = I - for (var/obj/item/reagent_containers/food/snacks/grown/G in B.contents) + for (var/obj/item/reagent_containers/food/G in B.contents) B.remove_from_storage(G, src) holdingitems += G if(holdingitems && holdingitems.len >= limit) //Sanity checking so the blender doesn't overfill