mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 19:12:57 +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)
|
||||
{
|
||||
if (!game.IsDeployedBuild) return base.OnClick(e);
|
||||
|
||||
changelog?.ShowBuild("lazer", game.Version);
|
||||
return base.OnClick(e);
|
||||
if (game.IsDeployedBuild)
|
||||
{
|
||||
changelog?.ShowBuild("lazer", game.Version);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user