mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 05:33:07 +08:00
Invert if statement
This commit is contained in:
parent
0625f51e65
commit
58564579e4
@ -78,10 +78,11 @@ namespace osu.Game.Overlays.Settings
|
|||||||
|
|
||||||
protected override bool OnClick(ClickEvent e)
|
protected override bool OnClick(ClickEvent e)
|
||||||
{
|
{
|
||||||
if (!game.IsDeployedBuild) return base.OnClick(e);
|
if (game.IsDeployedBuild)
|
||||||
|
{
|
||||||
changelog?.ShowBuild("lazer", game.Version);
|
changelog?.ShowBuild("lazer", game.Version);
|
||||||
return base.OnClick(e);
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user