1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 14:02:55 +08:00

Move statement to a new line

This commit is contained in:
HoutarouOreki 2018-07-25 20:01:24 +02:00
parent fb8ea770ae
commit 81786c4763

View File

@ -54,7 +54,8 @@ namespace osu.Game.Overlays.Changelog
{
if (changelogChart != null)
foreach (BuildHistory buildHistory in changelogChart.BuildHistory)
if (buildHistory.UserCount > 0) return false;
if (buildHistory.UserCount > 0)
return false;
return true;
}