From 3b7de676b451bade07dc47e26ee140a42bc882a6 Mon Sep 17 00:00:00 2001 From: Ben10Omintrix <138636438+Ben10Omintrix@users.noreply.github.com> Date: Tue, 6 Jan 2026 00:19:25 +0200 Subject: [PATCH] slimes now immediately stop attacking their tamers (#94737) ## About The Pull Request makes sure slimes and other animals immediately cease attacking their tamers ## Why It's Good For The Game makes sure slimes and other animals immediately cease attacking their tamers ## Changelog :cl: fix: makes sure slimes and other animals immediately cease attacking their tamers /:cl: --- code/datums/ai/basic_mobs/base_basic_controller.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/datums/ai/basic_mobs/base_basic_controller.dm b/code/datums/ai/basic_mobs/base_basic_controller.dm index 26d3e39e5a4..9537869bd05 100644 --- a/code/datums/ai/basic_mobs/base_basic_controller.dm +++ b/code/datums/ai/basic_mobs/base_basic_controller.dm @@ -64,6 +64,7 @@ forgive_target(new_friend) clear_blackboard_key(BB_BASIC_MOB_CURRENT_TARGET) clear_blackboard_key(BB_BASIC_MOB_RETALIATE_LIST) //we have just been tamed by a new party, clean slate for everyone! + CancelActions() RegisterSignal(new_friend, COMSIG_LIVING_MADE_NEW_FRIEND, PROC_REF(on_master_tame)) /datum/ai_controller/proc/on_untamed(datum/source, mob/living/old_friend)