From 940fc5e8fca765e6bc949d743b510313f1da5488 Mon Sep 17 00:00:00 2001 From: Janine vN Date: Sun, 5 Sep 2021 13:21:57 -0400 Subject: Update rogue paths to new paths --- bot/utils/halloween/spookifications.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bot/utils/halloween/spookifications.py') diff --git a/bot/utils/halloween/spookifications.py b/bot/utils/halloween/spookifications.py index f69dd6fd..93c5ddb9 100644 --- a/bot/utils/halloween/spookifications.py +++ b/bot/utils/halloween/spookifications.py @@ -22,7 +22,7 @@ def pentagram(im: Image) -> Image: """Adds pentagram to the image.""" im = im.convert("RGB") wt, ht = im.size - penta = Image.open("bot/resources/halloween/bloody-pentagram.png") + penta = Image.open("bot/resources/holidays/halloween/bloody-pentagram.png") penta = penta.resize((wt, ht)) im.paste(penta, (0, 0), penta) return im @@ -37,7 +37,7 @@ def bat(im: Image) -> Image: """ im = im.convert("RGB") wt, ht = im.size - bat = Image.open("bot/resources/halloween/bat-clipart.png") + bat = Image.open("bot/resources/holidays/halloween/bat-clipart.png") bat_size = randint(wt//10, wt//7) rot = randint(0, 90) bat = bat.resize((bat_size, bat_size)) -- cgit v1.2.3