diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a98b9c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Virtual environments +venv/ +env/ +ENV/ + +# Environment variables +.env +.env.local + +# IDE +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Discord bot specific +config.json +token.txt +logs/ +*.log + +# Database +*.db +*.sqlite +*.sqlite3 + +# Temporary files +*.tmp +.cache/ diff --git a/cogs/gamble.py b/cogs/gamble.py index 2b47552..b36d901 100755 --- a/cogs/gamble.py +++ b/cogs/gamble.py @@ -829,7 +829,7 @@ class Gamble(commands.Cog): ) await channel.send( f"{ctx.author.mention} Your private **{game}** session has started!\n" - f"Use `py invite ` and `py kick ` in this channel to manage access.\n" + f"Use `invite ` and `kick ` in this channel to manage access.\n" f"This channel will be deleted after **{inactivity} minutes of inactivity**." ) diff --git a/requirements.txt b/requirements.txt index 71192b4..36d42f9 100755 Binary files a/requirements.txt and b/requirements.txt differ