From 529eccc2dcc77653be064e0d1f8a56908f18251f Mon Sep 17 00:00:00 2001
From: SkyratBot <59378654+SkyratBot@users.noreply.github.com>
Date: Mon, 26 Oct 2020 09:12:51 +0100
Subject: [PATCH] [MIRROR] Removes shoe stealing shortcut (#1472)
* Removes shoe stealing shortcut (#54583)
Intent combos suck ass as it is and we don't need to make them worse by having obscure shortcuts for gimmicks that can be done with the strip menu, I've seen this used accidentally dozens of times and maybe once on purpose
* Removes shoe stealing shortcut
Co-authored-by: Mickyan <38563876+Mickyan@users.noreply.github.com>
---
code/modules/mob/living/carbon/human/species.dm | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm
index be548064265..be39af79e52 100644
--- a/code/modules/mob/living/carbon/human/species.dm
+++ b/code/modules/mob/living/carbon/human/species.dm
@@ -1303,18 +1303,6 @@ GLOBAL_LIST_EMPTY(roundstart_races)
if(attacker_style?.grab_act(user,target))
return TRUE
else
- //Steal them shoes
- if(target.body_position == LYING_DOWN && (user.zone_selected == BODY_ZONE_L_LEG || user.zone_selected == BODY_ZONE_R_LEG) && user.a_intent == INTENT_GRAB && target.shoes)
- var/obj/item/I = target.shoes
- user.visible_message("[user] starts stealing [target]'s [I.name]!",
- "You start stealing [target]'s [I.name]...", null, null, target)
- to_chat(target, "[user] starts stealing your [I.name]!")
- if(do_after(user, I.strip_delay, target))
- target.dropItemToGround(I, TRUE)
- user.put_in_hands(I)
- user.visible_message("[user] stole [target]'s [I.name]!",
- "You stole [target]'s [I.name]!", null, null, target)
- to_chat(target, "[user] stole your [I.name]!")
target.grabbedby(user)
return TRUE