aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/statistics/trackers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statistics/trackers.rs b/src/statistics/trackers.rs
index 2783285..6e23480 100644
--- a/src/statistics/trackers.rs
+++ b/src/statistics/trackers.rs
@@ -303,7 +303,7 @@ impl BoonTracker {
/// * `buff_id` - The buff (or condition) id.
fn get_queue(&mut self, agent: u64, buff_id: u16) -> Option<&mut BoonQueue> {
use std::collections::hash_map::Entry;
- let mut entry = self
+ let entry = self
.boon_queues
.entry(agent)
.or_insert_with(Default::default)