From 8038a987ff024920d46c6cf154c13ea919490eee Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Mon, 19 Feb 2024 20:56:38 +0300 Subject: [PATCH] [MIRROR] Fix Ai tracking runtime (#2041) * 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: NovaBot <154629622+NovaBot13@users.noreply.github.com> 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