aboutsummaryrefslogtreecommitdiff
path: root/cogs/general.py
diff options
context:
space:
mode:
authorziro <palembani@gmail.com>2020-08-05 06:09:20 +0000
committerziro <palembani@gmail.com>2020-08-05 06:09:20 +0000
commit8b9eb356e8a81d9b7eba8268a5e3bafbbe355ca0 (patch)
treea296f5f5e47568eba668743714389c70f116ca0e /cogs/general.py
parentf7b54808be04d550283de15faf31a53f364e5de6 (diff)
downloadsteve-bot-8b9eb356e8a81d9b7eba8268a5e3bafbbe355ca0.tar
steve-bot-8b9eb356e8a81d9b7eba8268a5e3bafbbe355ca0.tar.gz
steve-bot-8b9eb356e8a81d9b7eba8268a5e3bafbbe355ca0.tar.bz2
steve-bot-8b9eb356e8a81d9b7eba8268a5e3bafbbe355ca0.tar.lz
steve-bot-8b9eb356e8a81d9b7eba8268a5e3bafbbe355ca0.tar.xz
steve-bot-8b9eb356e8a81d9b7eba8268a5e3bafbbe355ca0.tar.zst
steve-bot-8b9eb356e8a81d9b7eba8268a5e3bafbbe355ca0.zip
+ Cleaning Up & Added Warning if bot doesn't have certain perm
Diffstat (limited to '')
-rw-r--r--cogs/general.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cogs/general.py b/cogs/general.py
index 68caf54..45f8e0f 100644
--- a/cogs/general.py
+++ b/cogs/general.py
@@ -6,13 +6,13 @@ class General(commands.Cog):
def __init__(self, bot):
self.bot = bot
- @commands.command(aliases=['add'])
- async def _add(self, ctx):
+ @commands.command()
+ async def add(self, ctx):
oauth_link = "https://discord.com/oauth2/authorize?client_id=740122842988937286&scope=bot"
await ctx.send(f"To add ziBot to your server, click here: \n {oauth_link}")
- @commands.command(aliases=['source'])
- async def sauce(self, ctx):
+ @commands.command()
+ async def source(self, ctx):
git_link = "https://github.com/null2264/ziBot"
await ctx.send(f"ziBot's Source Code: \n {git_link}")