Skip to content

Commit

Permalink
Add missing queue
Browse files Browse the repository at this point in the history
  • Loading branch information
stelar7 committed Jan 19, 2023
1 parent 5ff8b55 commit 3702ba4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,7 @@ public enum GameQueueType implements CodedEnum

TFT_CUSTOM(new Integer[]{3000}),
TFT_HYPER_ROLL_CUSTOM(new Integer[]{3010}),
ARAM_CLASH(new Integer[]{720}),

;

Expand Down Expand Up @@ -567,6 +568,8 @@ public String prettyName()
return "Teamfight Tactics Tutorial";
case TEAMFIGHT_TACTICS_HYPER_ROLL:
return "Teamfight Tactics Hyper Roll";
case ARAM_CLASH:
return "ARAM Clash";
default:
return "This enum does not have a pretty name";
}
Expand Down Expand Up @@ -704,6 +707,8 @@ public String commonName()
case TEAMFIGHT_TACTICS_TUTORIAL:
case TEAMFIGHT_TACTICS_HYPER_ROLL:
return "Teamfight Tactics";
case ARAM_CLASH:
return "ARAM Clash";
default:
return "This enum does not have a pretty name";
}
Expand Down

0 comments on commit 3702ba4

Please sign in to comment.