1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 07:29:53 +08:00

Rework RNG discarding comment

This commit is contained in:
smoogipoo
2018-06-13 19:52:04 +09:00
Unverified
parent cafdbc2d25
commit a97a7e13bd
@@ -56,13 +56,9 @@ namespace osu.Game.Rulesets.Catch.Beatmaps
foreach (var nested in juiceStream.NestedHitObjects)
{
if (nested is TinyDroplet tinyDroplet)
{
tinyDroplet.X += rng.Next(-20, 20) / CatchPlayfield.BASE_WIDTH;
}
else if (nested is Droplet)
{
rng.Next(); // Big droplets are not slided
}
rng.Next(); // osu!stable retrieved a random droplet rotation
}
break;
}