From c15f908ddeac9b02adbd726b018e4dd62d673eb7 Mon Sep 17 00:00:00 2001 From: PrismaticGynoid Date: Mon, 20 Nov 2017 12:20:23 -0800 Subject: [PATCH] Increases maximum stored camera locations This increases the number of stored camera locations the AI can have at one time, from 10 to 30. This is mostly a quality-of-life update in preparation for the new map, as its multiple floors make navigating around the station as the AI more difficult. --- code/game/machinery/camera/tracking.dm | 2 +- html/changelogs/PrismaticGynoid-storemoreplaces.yml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/PrismaticGynoid-storemoreplaces.yml diff --git a/code/game/machinery/camera/tracking.dm b/code/game/machinery/camera/tracking.dm index 1aadf981c4..4f6b7df94f 100644 --- a/code/game/machinery/camera/tracking.dm +++ b/code/game/machinery/camera/tracking.dm @@ -2,7 +2,7 @@ #define TRACKING_NO_COVERAGE 1 #define TRACKING_TERMINATE 2 -/mob/living/silicon/ai/var/max_locations = 10 +/mob/living/silicon/ai/var/max_locations = 30 /mob/living/silicon/ai/var/stored_locations[0] /proc/InvalidPlayerTurf(turf/T as turf) diff --git a/html/changelogs/PrismaticGynoid-storemoreplaces.yml b/html/changelogs/PrismaticGynoid-storemoreplaces.yml new file mode 100644 index 0000000000..f3da09b5f0 --- /dev/null +++ b/html/changelogs/PrismaticGynoid-storemoreplaces.yml @@ -0,0 +1,4 @@ +author: PrismaticGynoid +delete-after: True +changes: + - tweak: "Adjusts the amount of camera locations the AI can store from 10 to 30."