Fixes early removals of beakers (#56230)

Presently you can early remove a beaker/reagent_holder from a grinder by using alt click on it. This makes it so that grinders have to finish grinding before you can do that.
This commit is contained in:
Thalpy
2021-01-18 17:28:45 +00:00
committed by GitHub
parent 9d8ee9abb0
commit 914fe983d3
@@ -87,6 +87,8 @@
. = ..()
if(!can_interact(user) || !user.canUseTopic(src, BE_CLOSE, FALSE, NO_TK))
return
if(operating)//Prevent alt click early removals
return
replace_beaker(user)
/obj/machinery/reagentgrinder/handle_atom_del(atom/A)