Fix memory leak in VisualUpdateTracker

Closes #153
This commit is contained in:
thedarkcolour 2025-08-27 13:54:23 -07:00
parent b8a7ad1814
commit 3f94e27b00
No known key found for this signature in database
GPG Key ID: 86B37B3575FD5976
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
## Ex Deorum 3.8
- Fix memory leak in VisualUpdateTracker (#153)
## Ex Deorum 3.7
- Fix Barrel Mixing recipes with a result size greater than 1 only giving one output
- Allow changing drops for Random Armor Trim and Pottery Sherd, also add Tide to possible trims (#133)

View File

@ -63,6 +63,8 @@ public class VisualUpdateTracker {
}
}
}
pendingUpdates.clear();
}
}
}