From c8d3856d73b841950083b3ca7a7d24dccc69b39e Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Thu, 28 Nov 2019 20:34:41 +0100 Subject: [PATCH] Sanity --- code/modules/reagents/reagent_containers/rags.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/reagents/reagent_containers/rags.dm b/code/modules/reagents/reagent_containers/rags.dm index 8e2f7283c2..414208d0bf 100644 --- a/code/modules/reagents/reagent_containers/rags.dm +++ b/code/modules/reagents/reagent_containers/rags.dm @@ -91,6 +91,8 @@ var/obj/item/target if(Adjacent(user)) //Allows the user to drain the reagents into a beaker if adjacent (no telepathy). for(var/obj/item/I in user.held_items) + if(I == src) + continue if(I.is_open_container() && !I.reagents.holder_full()) target = I break