mirror of
https://github.com/ppy/osu.git
synced 2025-02-06 23:12:54 +08:00
Bypass offset disallowed status when handling realm callbacks
Hopefully don't need to overthink this one.
This commit is contained in:
parent
6a74f9f902
commit
df815bf41b
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user