1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-06 20:22:56 +08:00

Bypass offset disallowed status when handling realm callbacks

Hopefully don't need to overthink this one.
This commit is contained in:
Dean Herbert 2025-01-24 15:34:03 +09:00
parent 6a74f9f902
commit df815bf41b
No known key found for this signature in database

View File

@ -121,7 +121,11 @@ namespace osu.Game.Screens.Play.PlayerSettings
// At the point we reach here, it's not guaranteed that all realm writes have taken place (there may be some in-flight).
// We are only aware of writes that originated from our own flow, so if we do see one that's active we can avoid handling the feedback value arriving.
if (realmWriteTask == null)
{
Current.Disabled = false;
Current.Disabled = allowOffsetAdjust;
Current.Value = val;
}
if (realmWriteTask?.IsCompleted == true)
{