From b2b7535200b60697513768aea5491c9fc9b0eeca Mon Sep 17 00:00:00 2001 From: panvxv <68397497+panvxv@users.noreply.github.com> Date: Tue, 19 Aug 2025 17:01:06 +0200 Subject: [PATCH] Fix for the issue of mulebots unable to buckle people to themselves. (#92572) ## About The Pull Request Crude but simple fix for mulebots trying to buckle people. Mouse dragging was opening stripping UI instead of buckling people. Bots can't strip people anyway but I left a way to open strip UI. It is working just like for cyborgs, bot needs to be in combat mode to open it. Maybe someone will want to let Medbot strip people. The issue happened when new strip UI was added 4 years ago: https://github.com/tgstation/tgstation/pull/57889 Before the new UI the problem was known and someone fixed it: obraz But such simple solution isn't available anymore. ## Why It's Good For The Game Fix good, we fix. ## Changelog :cl: fix: Fixed bots unable to buckle people to themselves. /:cl: --- code/datums/elements/strippable.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/elements/strippable.dm b/code/datums/elements/strippable.dm index e489949c6ed..ff18519e0d6 100644 --- a/code/datums/elements/strippable.dm +++ b/code/datums/elements/strippable.dm @@ -43,10 +43,10 @@ if(!user.can_perform_action(source, FORBID_TELEKINESIS_REACH | ALLOW_RESTING)) return - // Snowflake for cyborgs buckling people by dragging them onto them, unless in combat mode. - if (iscyborg(user)) - var/mob/living/silicon/robot/cyborg_user = user - if (!cyborg_user.combat_mode) + // Snowflake for cyborgs and bots buckling people by dragging them onto them, unless in combat mode. + if(iscyborg(user) || isbot(user)) + var/mob/living/bot_user = user + if (!bot_user.combat_mode) return // Snowflake for xeno consumption code if (isalienadult(user))