Merge pull request #26 from 7ez/patch-1

fix: passed objects getting thrown out
This commit is contained in:
Julius
2025-08-01 12:55:15 +02:00
committed by GitHub
+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 = Some(passed_objects);
self
}