fix: remove nightly requirement

This commit is contained in:
osu!Akatsuki Developer
2022-12-28 00:05:14 +00:00
parent 5611e888c8
commit 31ecea34db
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -287,7 +287,7 @@ impl PyCalculator {
// or mode is not specified and map is osu!standard, as that will be the inferred mode
if (self.mods.is_some() && self.mods.unwrap().rx())
&& ((self.mode.is_none() && map.inner.mode == GameMode::Osu)
|| self.mode.contains(&GameMode::Osu))
|| self.mode == Some(GameMode::Osu))
{
return self.performance_2019(map);
}
-1
View File
@@ -1,5 +1,4 @@
#![deny(clippy::all, nonstandard_style, rust_2018_idioms, unused, warnings)]
#![feature(option_result_contains)]
use self::{
beatmap::PyBeatmap,