capitalization

howdoi
bobloy 7 years ago
parent 930a173a39
commit 8e4cb59bd7

@ -32,44 +32,44 @@ class Fight:
self.config = Config.get_conf(self,identifier=49564952847684) self.config = Config.get_conf(self,identifier=49564952847684)
default_global = {} default_global = {}
default_guild = { default_guild = {
"CURRENT": None, "current": None,
"TOURNEYS": {}, "tourneys": {},
"SETTINGS": { "settings": {
"SELFREPORT": True, "selfreport": True,
"REPORTCHNNL": None, "reportchnnl": None,
"ANNOUNCECHNNL": None, "announcechnnl": None,
"ADMIN": None "admin": None
}, },
"SRTRACKER": { "srtracker": {
"ROUND": None, "round": None,
"CHNNLS": None, "chnnls": None,
}, },
"EMOJI": { "emoji": {
"NUMS": [], "nums": [],
"UNDO": None, "undo": None,
"APPR": None "appr": None
} }
} }
default_tourney = { default_tourney = {
"PLAYERS": [], "players": [],
"NAME": "Tourney 0", "name": "Tourney 0",
"RULES": {"BESTOF": 1, "BESTOFFINAL": 1, "TYPE": 0}, "rules": {"BESTOF": 1, "BESTOFFINAL": 1, "TYPE": 0},
"TYPEDATA": {}, "typedata": {},
"OPEN": False, "open": False,
"WINNER": None "winner": None
} }
default_match = { default_match = {
"TEAM1": [], "team1": [],
"TEAM2": [], "team2": [],
"SCORE1": 0, "score1": 0,
"SCORE2": 0, "score2": 0,
"USERSCORE1": { "userscore1": {
"SCORE1": 0, "score1": 0,
"SCORE2": 0 "score2": 0
}, },
"USERSCORE2": { "userscore2": {
"SCORE1": 0, "score1": 0,
"SCORE2": 0 "score2": 0
} }
} }
self.config.register_global(**default_global) self.config.register_global(**default_global)

Loading…
Cancel
Save