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 c475fb7..fb143f8 100644 --- a/src/tracker_state.cpp +++ b/src/tracker_state.cpp | |||
@@ -672,5 +672,5 @@ bool IsPaintingReachable(int painting_id) { | |||
672 | const std::map<std::string, bool>& GetDoorRequirements(int door_id) { | 672 | const std::map<std::string, bool>& GetDoorRequirements(int door_id) { |
673 | std::lock_guard reachability_guard(GetState().reachability_mutex); | 673 | std::lock_guard reachability_guard(GetState().reachability_mutex); |
674 | 674 | ||
675 | return GetState().door_reports.at(door_id); | 675 | return GetState().door_reports[door_id]; |
676 | } | 676 | } |