diff options
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/seasons/easter/egg_hunt/cog.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/seasons/easter/egg_hunt/cog.py b/bot/seasons/easter/egg_hunt/cog.py index 704c3173..eb81744c 100644 --- a/bot/seasons/easter/egg_hunt/cog.py +++ b/bot/seasons/easter/egg_hunt/cog.py @@ -342,8 +342,8 @@ class EggHunt(commands.Cog):              windows.insert(0, EggHuntSettings.start_time)              for i, window in enumerate(windows):                  c.execute(f"SELECT COUNT(*) FROM super_eggs WHERE window={window}") -                alread_dropped = c.fetchone()[0] -                if alread_dropped: +                already_dropped = c.fetchone()[0] +                if already_dropped:                      continue                  else:                      current_window = window | 
