From c0f030919aae3fe7f736a3f13a9ff1c69e9efc4a Mon Sep 17 00:00:00 2001
From: Nathan Woodburn <github@nathan.woodburn.au>
Date: Mon, 31 Mar 2025 12:54:16 +1100
Subject: [PATCH] fix: Correct typo

---
 .gitignore | 1 +
 bot.py     | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 24389d8..3f0ae6b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ __pycache__/
 roles.json
 
 faucet.json
+.venv
diff --git a/bot.py b/bot.py
index 6ead36c..7c33033 100644
--- a/bot.py
+++ b/bot.py
@@ -208,10 +208,10 @@ async def on_reaction_add(reaction, user):
 
             if str(reaction.message.guild.id) in roles:
                 if roles[str(reaction.message.guild.id)] not in [role.id for role in user.roles]:
-                    await reaction.message.channel.send("You don't have permission to approve this gift\nRun /verify to be eligable to approve gifts")
+                    await reaction.message.channel.send("You don't have permission to approve this gift\nRun /verify to be eligible to approve gifts")
                     return
             else:
-                await reaction.message.channel.send("You don't have permission to approve this gift\nRun /verify to be eligable to approve gifts")
+                await reaction.message.channel.send("You don't have permission to approve this gift\nRun /verify to be eligible to approve gifts")
                 return
 
             if (datetime.datetime.now() - faucet_message["time"]).total_seconds() > 900: