1
0
mirror of https://gitlab.com/ddorn/tfjm-discord-bot.git synced 2025-07-27 12:25:24 +02:00

🐛 fix tirages for finale

This commit is contained in:
ddorn
2020-05-20 12:54:46 +02:00
parent 161478caf8
commit fd000958a7
3 changed files with 25 additions and 22 deletions

View File

@ -13,6 +13,7 @@ import discord
import yaml
from src.constants import *
from src.utils import pprint_send
def skip_if(check, default=None):
@ -280,7 +281,8 @@ class BaseTirage(yaml.YAMLObject):
i += 1
# The conflicts
order = doubles + order
self.poules[poule] = order
self.poules[poule] = [t.name for t in order]
await self.annonce_poule(poule)