From 3d2d73048ef82eaa34c3f8450aeba459d310ab67 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Sun, 12 Jan 2025 14:20:00 -0500 Subject: [PATCH] fix fusion gauntlets failing to deploy (#27946) --- code/game/objects/items/weapons/twohanded.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/twohanded.dm b/code/game/objects/items/weapons/twohanded.dm index fb7355532c0..31f6bd289c6 100644 --- a/code/game/objects/items/weapons/twohanded.dm +++ b/code/game/objects/items/weapons/twohanded.dm @@ -864,7 +864,7 @@ if(on_cooldown) to_chat(user, "[src] is on cooldown!") return - if(!user.drop_l_hand() || !user.drop_r_hand()) + if((user.l_hand && !user.drop_l_hand()) || (user.r_hand && !user.drop_r_hand())) to_chat(user, "[src] are unable to deploy the blades with the items in your hands!") return var/obj/item/W = new /obj/item/pyro_claws