From 3cf4fe9b7eb4a5cf7b40d703acbdebc4387ce3a6 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 11 Apr 2024 10:30:44 +0200 Subject: [PATCH] [MIRROR] You can no longer aggressive grab medbots (#27253) * You can no longer aggressive grab medbots (#82548) ## About The Pull Request Fixes https://github.com/tgstation/tgstation/issues/82475 Medbots had CANPUSH in their flags, which allows them to be aggressive grabbed, which allows them to be thrown. We don't want that because it turns them into all-access keycards. As far as me (and ben10) could ascertain, it didn't have this flag enabled for any particular reason. ## Changelog :cl: fix: Medbots can no longer be used as especially large golden ID cards /:cl: * You can no longer aggressive grab medbots --------- Co-authored-by: Jacquerel --- code/modules/mob/living/basic/bots/medbot/medbot.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/bots/medbot/medbot.dm b/code/modules/mob/living/basic/bots/medbot/medbot.dm index 24da9e2cd5b..e784aa6249e 100644 --- a/code/modules/mob/living/basic/bots/medbot/medbot.dm +++ b/code/modules/mob/living/basic/bots/medbot/medbot.dm @@ -14,7 +14,7 @@ light_power = 0.8 light_color = "#99ccff" pass_flags = PASSMOB | PASSFLAPS - status_flags = (CANPUSH | CANSTUN) + status_flags = CANSTUN ai_controller = /datum/ai_controller/basic_controller/bot/medbot req_one_access = list(ACCESS_ROBOTICS, ACCESS_MEDICAL)