mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Rework RNG discarding comment
This commit is contained in:
@ -56,13 +56,9 @@ namespace osu.Game.Rulesets.Catch.Beatmaps
|
|||||||
foreach (var nested in juiceStream.NestedHitObjects)
|
foreach (var nested in juiceStream.NestedHitObjects)
|
||||||
{
|
{
|
||||||
if (nested is TinyDroplet tinyDroplet)
|
if (nested is TinyDroplet tinyDroplet)
|
||||||
{
|
|
||||||
tinyDroplet.X += rng.Next(-20, 20) / CatchPlayfield.BASE_WIDTH;
|
tinyDroplet.X += rng.Next(-20, 20) / CatchPlayfield.BASE_WIDTH;
|
||||||
}
|
|
||||||
else if (nested is Droplet)
|
else if (nested is Droplet)
|
||||||
{
|
rng.Next(); // osu!stable retrieved a random droplet rotation
|
||||||
rng.Next(); // Big droplets are not slided
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user