diff options
| author | 2019-03-04 22:52:11 -0700 | |
|---|---|---|
| committer | 2019-03-04 22:52:11 -0700 | |
| commit | 5c0ad419a49305a572d2b6bb5f1b9f798adb7c4b (patch) | |
| tree | e0b083b1dd6ff5adac4f2d5b432899ec79173f46 /bot/constants.py | |
| parent | Merge pull request #112 from RohanJnr/be-my-valentine-iceman (diff) | |
Initial move of Snakes cog from the bot to seasonalbot
Diffstat (limited to '')
| -rw-r--r-- | bot/constants.py | 21 | 
1 files changed, 20 insertions, 1 deletions
| diff --git a/bot/constants.py b/bot/constants.py index cb191da9..f91e1f71 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -6,7 +6,7 @@ from bot.bot import SeasonalBot  __all__ = (      "AdventOfCode", "Channels", "Client", "Colours", "Emojis", "Hacktoberfest", "Roles", -    "Tokens", "bot" +    "Tokens", "ERROR_REPLIES", "bot"  )  log = logging.getLogger(__name__) @@ -109,6 +109,25 @@ class Roles(NamedTuple):  class Tokens(NamedTuple):      giphy = environ.get("GIPHY_TOKEN")      aoc_session_cookie = environ.get("AOC_SESSION_COOKIE") +    omdb = environ.get("OMDB_API_KEY") +    youtube = environ.get("YOUTUBE_API_KEY") + + +ERROR_REPLIES = [ +    "Please don't do that.", +    "You have to stop.", +    "Do you mind?", +    "In the future, don't do that.", +    "That was a mistake.", +    "You blew it.", +    "You're bad at computers.", +    "Are you trying to kill me?", +    "Noooooo!!", +    "I can't believe you've done this", +]  bot = SeasonalBot(command_prefix=Client.prefix) + + + | 
