From 8c4e37ed31bbe566ba625a86b402bc2cbaca81d4 Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 10 Dec 2025 15:39:48 -0500 Subject: [PATCH] Corrects the Spy Bounty Calling for Scrubbs, MD (#94362) ## About The Pull Request See title. ## Why It's Good For The Game It caused confusion on a downstream. ## Changelog :cl: spellcheck: The Scrubs, MD abduction spy bounty now has the proper name. /:cl: --- code/modules/antagonists/spy/spy_bounty.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/antagonists/spy/spy_bounty.dm b/code/modules/antagonists/spy/spy_bounty.dm index 975e42dd58a..2adbe7f05c7 100644 --- a/code/modules/antagonists/spy/spy_bounty.dm +++ b/code/modules/antagonists/spy/spy_bounty.dm @@ -735,10 +735,10 @@ bot_type = /mob/living/simple_animal/bot/secbot/pingsky help = "Abduct Officer Pingsky - commonly found protecting the station's AI." -/datum/spy_bounty/some_bot/scrubbs +/datum/spy_bounty/some_bot/scrubs difficulty = SPY_DIFFICULTY_EASY bot_type = /mob/living/basic/bot/cleanbot/medbay - help = "Abduct Scrubbs, MD - commonly found mopping up blood in Medbay." + help = "Abduct Scrubs, MD - commonly found mopping up blood in Medbay." -/datum/spy_bounty/some_bot/scrubbs/can_claim(mob/user) +/datum/spy_bounty/some_bot/scrubs/can_claim(mob/user) return !(user.mind?.assigned_role.departments_bitflags & DEPARTMENT_BITFLAG_MEDICAL)