Rework RNG discarding comment

This commit is contained in:
smoogipoo 2018-06-13 19:52:04 +09:00
parent cafdbc2d25
commit a97a7e13bd
1 changed files with 1 additions and 5 deletions

View File

@ -56,13 +56,9 @@ private void finalizePosition()
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;
}