From 52170995bc7e41123e036cbf36f5caa57c0cd082 Mon Sep 17 00:00:00 2001 From: jason Date: Thu, 25 Jul 2019 21:53:39 -0500 Subject: [PATCH] added normal tft queue --- cassiopeia/data.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cassiopeia/data.py b/cassiopeia/data.py index e41846e5..3f3a7019 100644 --- a/cassiopeia/data.py +++ b/cassiopeia/data.py @@ -550,6 +550,7 @@ class Queue(Enum): odyssey_captain = "ODYSSEY_CAPTAIN" # 1060 odyssey_onslaught = "ODYSSEY_ONSLAUGHT" # 1070 ranked_tft = "RANKED_TFT" # 1100 + normal_tft = "NORMAL_TFT" # 1090 nexus_blitz = "NEXUS_BLITZ" # 1200 def from_id(id: int): @@ -634,6 +635,7 @@ def id(self): Queue.odyssey_captain: 1060, # Odyssey: Extraction Queue.odyssey_onslaught: 1070, # Odyssey: Extraction Queue.ranked_tft: 1100, # Convergence, Ranked Teamfight Tactics games + Queue.normal_tft: 1090, # Convergence, Normal Teamfight Tactics games Queue.nexus_blitz: 1200, # Nexus Blitz map Nexus Blitz }