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))