mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Always unbind bindings
This commit is contained in:
@ -92,15 +92,14 @@ namespace osu.Game.Screens.Play.HUD
|
||||
if (configEnabled == null || healthProcessor == null)
|
||||
return;
|
||||
|
||||
enabled.UnbindBindings();
|
||||
|
||||
// Don't display ever if the ruleset is not using a draining health display.
|
||||
if (healthProcessor is DrainingHealthProcessor)
|
||||
enabled.BindTo(configEnabled);
|
||||
else
|
||||
{
|
||||
enabled.UnbindBindings();
|
||||
enabled.Value = false;
|
||||
}
|
||||
}
|
||||
|
||||
protected override void Update()
|
||||
{
|
||||
|
Reference in New Issue
Block a user