diff --git a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm index e1371466dc2..9601746443a 100644 --- a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm +++ b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm @@ -155,7 +155,7 @@ to_chat(user, "Close the maintenance panel first.") else if(!user.drop_item()) - return TRUE + return FALSE beaker = I beaker.loc = src update_icon() @@ -167,11 +167,11 @@ var/obj/item/reagent_containers/food/snacks/grown/G = I if(!G.dry) to_chat(user, "You must dry that first!") - return TRUE + return FALSE if(holdingitems && holdingitems.len >= limit) to_chat(usr, "The machine cannot hold anymore items.") - return TRUE + return FALSE //Fill machine with a bag! if(istype(I, /obj/item/storage/bag))