From f0ca079fe6f0e0f2006bc44e1357475db93f28a0 Mon Sep 17 00:00:00 2001 From: Urantij Date: Tue, 18 Nov 2025 15:52:37 +0700 Subject: [PATCH] Fix cursor incorrectly flashing red after a rewind in replays with Alternate mod active (#35725) * Fix red cursor with alt mod when rewind * Change rewind detection in input blocking --- osu.Game.Rulesets.Osu/Mods/InputBlockingMod.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/osu.Game.Rulesets.Osu/Mods/InputBlockingMod.cs b/osu.Game.Rulesets.Osu/Mods/InputBlockingMod.cs index b56fdbdf74..34eb2be077 100644 --- a/osu.Game.Rulesets.Osu/Mods/InputBlockingMod.cs +++ b/osu.Game.Rulesets.Osu/Mods/InputBlockingMod.cs @@ -67,6 +67,9 @@ namespace osu.Game.Rulesets.Osu.Mods { if (LastAcceptedAction != null && nonGameplayPeriods.IsInAny(gameplayClock.CurrentTime)) LastAcceptedAction = null; + + if (LastAcceptedAction != null && gameplayClock.IsRewinding) + LastAcceptedAction = null; } protected abstract bool CheckValidNewAction(OsuAction action);