From 843f4ed0da0426ab38c5484011a5ece317d3d3bb Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Mon, 16 Dec 2019 02:44:58 +0100 Subject: [PATCH] FLAK --- code/modules/reagents/chemistry/machinery/chem_master.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/machinery/chem_master.dm b/code/modules/reagents/chemistry/machinery/chem_master.dm index bab986c6be..1ac62ba651 100644 --- a/code/modules/reagents/chemistry/machinery/chem_master.dm +++ b/code/modules/reagents/chemistry/machinery/chem_master.dm @@ -130,7 +130,7 @@ var/obj/item/reagent_containers/B = beaker B.forceMove(drop_location()) if(user && Adjacent(user) && !issiliconoradminghost(user)) - B.put_in_hands(beaker) + user.put_in_hands(B) if(new_beaker) beaker = new_beaker update_icon() @@ -140,7 +140,7 @@ var/obj/item/storage/pill_bottle/B = bottle B.forceMove(drop_location()) if(user && Adjacent(user) && !issiliconoradminghost(user)) - B.put_in_hands(bottle) + user.put_in_hands(B) else adjust_item_drop_location(B) if(new_bottle)