From 2049eed25f6554437d81c8a6cc31f7c411e0c363 Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Sun, 18 Feb 2024 11:55:27 -0500 Subject: [PATCH] [MIRROR] Fix Ai tracking runtime (#1026) * Fix Ai tracking runtime (#81518) ## About The Pull Request First arg is tracker, second arg is name. ## Changelog :cl: Melbert fix: Fixes AI double-click tracking /:cl: * Fix Ai tracking runtime --------- Co-authored-by: MrMelbert <51863163+MrMelbert@users.noreply.github.com> --- code/game/machinery/camera/trackable.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/camera/trackable.dm b/code/game/machinery/camera/trackable.dm index b1c4b46da4b..7155dc10e8e 100644 --- a/code/game/machinery/camera/trackable.dm +++ b/code/game/machinery/camera/trackable.dm @@ -195,6 +195,6 @@ if(!tracker || tracker.stat == DEAD) return // Need to make sure the tracked mob is in our list - track_name(tracked.name) + track_name(tracker, tracked.name) #undef CAMERA_TICK_LIMIT