aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/constants.py2
-rw-r--r--bot/resources/persist/egg_hunt.sqlite (renamed from bot/resources/easter/egg_hunt.sqlite)bin16384 -> 16384 bytes
-rw-r--r--bot/seasons/easter/egg_hunt/cog.py2
3 files changed, 2 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 7011bd8c..a62166af 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -54,7 +54,7 @@ class Channels(NamedTuple):
class Client(NamedTuple):
guild = int(environ.get('SEASONALBOT_GUILD', 267624335836053506))
- prefix = "."
+ prefix = environ.get("PREFIX", ".")
token = environ.get('SEASONALBOT_TOKEN')
debug = environ.get('SEASONALBOT_DEBUG', '').lower() == 'true'
season_override = environ.get('SEASON_OVERRIDE')
diff --git a/bot/resources/easter/egg_hunt.sqlite b/bot/resources/persist/egg_hunt.sqlite
index 6a7ae32d..6a7ae32d 100644
--- a/bot/resources/easter/egg_hunt.sqlite
+++ b/bot/resources/persist/egg_hunt.sqlite
Binary files differ
diff --git a/bot/seasons/easter/egg_hunt/cog.py b/bot/seasons/easter/egg_hunt/cog.py
index a4cf823d..e963f22b 100644
--- a/bot/seasons/easter/egg_hunt/cog.py
+++ b/bot/seasons/easter/egg_hunt/cog.py
@@ -15,7 +15,7 @@ from .constants import Colours, EggHuntSettings, Emoji, Roles
log = logging.getLogger(__name__)
-DB_PATH = Path("bot", "resources", "easter", "egg_hunt.sqlite")
+DB_PATH = Path("bot", "resources", "persist", "egg_hunt.sqlite")
TEAM_MAP = {
Roles.white: Emoji.egg_white,