1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-26 22:43:21 +08:00

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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,12 +105,12 @@ namespace osu.Game.Users
this.score = score; 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 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) public Spectating(ScoreInfo score)
: base(score) : base(score)