fix: Correct typo

This commit is contained in:
Nathan Woodburn 2025-03-31 12:54:16 +11:00
parent 35f49fb94a
commit c0f030919a
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ __pycache__/
roles.json
faucet.json
.venv

4
bot.py
View File

@ -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: