1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:03:08 +08:00

Fix incorrect initial rotation transfer value

Should have been removed as part of https://github.com/ppy/osu/pull/24360.
This commit is contained in:
Dean Herbert 2023-10-16 19:34:55 +09:00
parent 10bab61441
commit 0bb95cfa88
No known key found for this signature in database

View File

@ -97,7 +97,7 @@ namespace osu.Game.Rulesets.Osu.Skinning.Default
if (!rotationTransferred) if (!rotationTransferred)
{ {
currentRotation = Rotation * 2; currentRotation = Rotation;
rotationTransferred = true; rotationTransferred = true;
} }