Added comments to status enums

This commit is contained in:
Franklin 2022-10-16 18:56:41 -04:00
parent af03fe896f
commit 7641284360
1 changed files with 2 additions and 0 deletions

View File

@ -8,8 +8,10 @@ pub enum LeaguePlayerStatus {
/// The player requested to join but got denied by the league owner /// The player requested to join but got denied by the league owner
Denied, Denied,
/// The player joined either by getting accepted or by joining an open league /// The player joined either by getting accepted or by joining an open league
/// Active group (Can only have one at a time)
Joined, Joined,
/// The player is requesting to join a league /// The player is requesting to join a league
/// Active group (Can only have one at a time)
#[default] #[default]
Requested, Requested,
/// The player was already in a league and was kicked out. /// The player was already in a league and was kicked out.