Skip to content

Commit

Permalink
[MIRROR] Fix Ai tracking runtime (#1026)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed Feb 18, 2024
1 parent 30dfd4c commit 2049eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/machinery/camera/trackable.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2049eed

Please sign in to comment.