From 4e2f3f933ec0e1e6db0ce65feee4c5ab7fd3a597 Mon Sep 17 00:00:00 2001 From: FalloutFalcon <86381784+FalloutFalcon@users.noreply.github.com> Date: Sat, 11 Apr 2026 12:42:03 -0500 Subject: [PATCH] Dont show swap hand tutorial if you only have 1 hand (#95716) ## About The Pull Request Dont show swap hand tutorial if you only have 1 hand as you cannot complete it. ## Why It's Good For The Game Someone on a downstream had an issue where it kept showing them the tutorial but they could not complete it as they play a character with only 1 arm. Could prob extend this to a disabled limb as well.. dunno. ## Changelog :cl: fix: The swap hand tutorial wont be shown to someone missing a hand /:cl: --- code/_onclick/item_attack.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm index c37d6d9d417..d13f28c28a9 100644 --- a/code/_onclick/item_attack.dm +++ b/code/_onclick/item_attack.dm @@ -78,7 +78,8 @@ // This can mean nothing happened, this can mean the target took damage, etc. if(user.client && isitem(target)) - if(isnull(user.get_inactive_held_item())) + var/mob/living/living_user = astype(user) + if(isnull(user.get_inactive_held_item() && living_user?.num_hands > 1)) SStutorials.suggest_tutorial(user, /datum/tutorial/switch_hands, modifiers) else SStutorials.suggest_tutorial(user, /datum/tutorial/drop, modifiers)