From 0e0b223ed19e0dc61a7784a5a5bbad36595e044f Mon Sep 17 00:00:00 2001 From: Thunder12345 Date: Sat, 30 May 2026 05:48:48 +0100 Subject: [PATCH] Makes the casino shuttle honkbot not run away (#96221) ## About The Pull Request Adds a non-patrolling subtype of honkbot for the casino shuttle to use. Fixes #96201 ## Why It's Good For The Game He's supposed to be spreading joy to the evacuees, not running away roam the halls. ## Changelog :cl: fix: The honkbot on the casino emergency shuttle has been told not to abandon its post. /:cl: --- _maps/shuttles/emergency_casino.dmm | 2 +- code/modules/mob/living/basic/bots/honkbots/honkbot.dm | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/_maps/shuttles/emergency_casino.dmm b/_maps/shuttles/emergency_casino.dmm index 1f28d476bf9..09a114aeac2 100644 --- a/_maps/shuttles/emergency_casino.dmm +++ b/_maps/shuttles/emergency_casino.dmm @@ -1188,7 +1188,7 @@ /obj/item/storage/crayons, /obj/item/storage/crayons, /obj/item/storage/crayons, -/mob/living/basic/bot/secbot/honkbot, +/mob/living/basic/bot/secbot/honkbot/nopatrol, /turf/open/floor/sepia, /area/shuttle/escape) "NN" = ( diff --git a/code/modules/mob/living/basic/bots/honkbots/honkbot.dm b/code/modules/mob/living/basic/bots/honkbots/honkbot.dm index 9d7abf3c1f6..5daa8e5b25b 100644 --- a/code/modules/mob/living/basic/bots/honkbots/honkbot.dm +++ b/code/modules/mob/living/basic/bots/honkbots/honkbot.dm @@ -26,8 +26,6 @@ baton_type = /obj/item/bikehorn/airhorn cuff_type = /obj/item/restraints/handcuffs/cable/zipties/fake - - /mob/living/basic/bot/secbot/honkbot/Initialize(mapload) . = ..() var/static/list/clown_friends = typecacheof(list( @@ -121,3 +119,6 @@ honkbot_assembly.created_name = name new /obj/item/assembly/prox_sensor(drop_location) drop_part(baton_type, drop_location) + +/mob/living/basic/bot/secbot/honkbot/nopatrol + bot_mode_flags = parent_type::bot_mode_flags & ~BOT_MODE_AUTOPATROL