1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-21 16:37:18 +08:00

Remove duplicate condition in TournamentFont

This commit is contained in:
recapitalverb 2020-01-13 23:28:26 +07:00 committed by GitHub
parent f3bb47ffce
commit af167eb719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ namespace osu.Game.Tournament
string weightString = weight.ToString();
// Only exo has an explicit "regular" weight, other fonts do not
if (weight == FontWeight.Regular && family != GetFamilyString(TournamentTypeface.Aquatico) && family != GetFamilyString(TournamentTypeface.Aquatico))
if (weight == FontWeight.Regular && family != GetFamilyString(TournamentTypeface.Aquatico))
weightString = string.Empty;
return weightString;