diff options
-rw-r--r-- | src/tracker_state.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tracker_state.cpp b/src/tracker_state.cpp index a4134f9..2f25257 100644 --- a/src/tracker_state.cpp +++ b/src/tracker_state.cpp | |||
@@ -650,5 +650,5 @@ bool IsPaintingReachable(int painting_id) { | |||
650 | const std::map<std::string, bool>& GetDoorRequirements(int door_id) { | 650 | const std::map<std::string, bool>& GetDoorRequirements(int door_id) { |
651 | std::lock_guard reachability_guard(GetState().reachability_mutex); | 651 | std::lock_guard reachability_guard(GetState().reachability_mutex); |
652 | 652 | ||
653 | return GetState().door_reports.at(door_id); | 653 | return GetState().door_reports[door_id]; |
654 | } | 654 | } |