fix: passed objects getting thrown out

This commit is contained in:
Aochi
2025-08-01 10:46:15 +02:00
committed by GitHub
parent c0e499ec3a
commit bb00b59273
+1 -1
View File
@@ -131,7 +131,7 @@ impl<'m> OsuPP<'m> {
#[inline]
pub fn passed_objects(mut self, passed_objects: u32) -> Self {
self.passed_objects = self.passed_objects.replace(passed_objects);
self.passed_objects.replace(passed_objects);
self
}