diff options
author | 2018-11-20 02:21:47 +0100 | |
---|---|---|
committer | 2018-11-20 02:21:47 +0100 | |
commit | 29aa5d3473587e79469e902199431238ef0f9f21 (patch) | |
tree | 42171ebbc66ce5d7f1b57a21327e8e5cf6ea2429 /bot/cogs/hacktober/halloweenify.py | |
parent | Merge pull request #33 from mathsman5133/candy-collection (diff) | |
parent | It should work now. (diff) |
Merge pull request #67 from python-discord/dfitzpatrick-vote-monster-refactor
Dfitzpatrick vote monster refactor
Diffstat (limited to 'bot/cogs/hacktober/halloweenify.py')
-rw-r--r-- | bot/cogs/hacktober/halloweenify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/hacktober/halloweenify.py b/bot/cogs/hacktober/halloweenify.py index a5fe45ef..9b93ac99 100644 --- a/bot/cogs/hacktober/halloweenify.py +++ b/bot/cogs/hacktober/halloweenify.py @@ -21,7 +21,7 @@ class Halloweenify: """ Change your nickname into a much spookier one! """ - with open(Path('./bot/resources', 'halloweenify.json'), 'r') as f: + with open(Path('bot', 'resources', 'halloween', 'halloweenify.json'), 'r') as f: data = load(f) # Choose a random character from our list we loaded above and set apart the nickname and image url. |