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 ccb3fbd..869f837 100644 --- a/src/tracker_state.cpp +++ b/src/tracker_state.cpp | |||
@@ -601,5 +601,5 @@ bool IsDoorOpen(int door_id) { | |||
601 | const std::map<std::string, bool>& GetDoorRequirements(int door_id) { | 601 | const std::map<std::string, bool>& GetDoorRequirements(int door_id) { |
602 | std::lock_guard reachability_guard(GetState().reachability_mutex); | 602 | std::lock_guard reachability_guard(GetState().reachability_mutex); |
603 | 603 | ||
604 | return GetState().door_reports.at(door_id); | 604 | return GetState().door_reports[door_id]; |
605 | } | 605 | } |