From b81b794818aefd4e98c547ed516c33f93d8a2e18 Mon Sep 17 00:00:00 2001 From: Toastical <20125180+Toastical@users.noreply.github.com> Date: Fri, 30 May 2025 18:49:44 +0300 Subject: [PATCH] prevent wireless transfer amount setting on reagent containers (#29493) --- code/modules/reagents/reagent_containers.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index 75ba6ad1f63..7024c7bbb68 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -36,7 +36,7 @@ if(!length(possible_transfer_amounts)) // Nothing to configure. return FALSE - return TRUE + return is_valid_interaction(user) /obj/item/reagent_containers/proc/is_valid_interaction(mob/user) if(isrobot(user) && src.loc == user)