diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index bc48d65f93..19ccee75ae 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -148,7 +148,8 @@ /obj/item/twohanded/required/mob_can_equip(mob/M, mob/equipper, slot, disable_warning = 0) if(wielded && !slot_flags) - to_chat(M, "[src] is too cumbersome to carry with anything but your hands!") + if(!disable_warning) + to_chat(M, "[src] is too cumbersome to carry with anything but your hands!") return 0 return ..()