⚠️ Operations Roles (operations)- Each role has special permissions that manage various aspects of your server. These permissions are changeable per role.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Customization", | |
"key": "customization", | |
"description": "Customize your league to your liking with settings like custom embeds, messages, emojis, etc.", | |
"settings": [ | |
{ | |
"name": "Embed Color", | |
"key": "embed_color", | |
"default_value": [], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
from typing import Optional, Dict, List, Tuple, Set | |
class Game: | |
def __init__(self, opponent: 'Team', is_conf: bool): | |
self.opponent = opponent | |
self.is_conf = is_conf | |
class Team: | |
def __init__(self, name: str, conference: Optional[str]=None): |