refactor: improve wording

Co-authored-by: Joseph Madamba <madamba.joehu@outlook.com>
This commit is contained in:
Ruki
2023-02-09 17:15:30 +00:00
committed by GitHub
parent da10166628
commit 2c1154afc6

View File

@ -105,12 +105,12 @@ namespace osu.Game.Users
this.score = score;
}
public override string GetStatus(bool hideIdentifiableInformation = false) => hideIdentifiableInformation ? @"Watching a game" : $@"Watching {Username}";
public override string GetStatus(bool hideIdentifiableInformation = false) => hideIdentifiableInformation ? @"Watching a replay" : $@"Watching {Username}'s replay";
}
public class Spectating : Watching
{
public override string GetStatus(bool hideIdentifiableInformation = false) => hideIdentifiableInformation ? @"Spectating a game" : $@"Spectating {Username}";
public override string GetStatus(bool hideIdentifiableInformation = false) => hideIdentifiableInformation ? @"Spectating a user" : $@"Spectating {Username}";
public Spectating(ScoreInfo score)
: base(score)