Compare commits

...

6 commits

Author SHA1 Message Date
8ce21fad0e Merge branch 'master' into unstable 2021-11-22 21:10:51 +00:00
a3ad473a61 restart script + restart command -contrib: Ecolipsy 2021-11-22 21:07:02 +00:00
cd9b99fe1d restart command + start script 2021-11-22 21:01:35 +00:00
a096353bf7 bot.py
Update stable release to newest unstable release.
2021-11-21 12:03:58 +00:00
37b48ad59a Stable release - removing mc as not currently fit for stable release, fixed credits. 2021-11-20 14:42:37 +00:00
0bb02f967d added cat! 2021-11-20 10:50:36 +00:00
2 changed files with 17 additions and 2 deletions

15
bot.py Executable file → Normal file
View file

@ -22,9 +22,9 @@ def getAllUsers():
async def is_ginlang(ctx):
"""
are you ginlang or the other dude?
are you ginlang or the other dudes?
"""
if ctx.author.id in [287885666941927424, 894034804503351366]:
if ctx.author.id in [287885666941927424, 894034804503351366, 296736767158255616, 831598877320413244]:
return True
else:
logchannel = await bot.fetch_channel(910622485916037150)
@ -76,6 +76,11 @@ async def koala(ctx):
await ctx.send(json["fact"])
await ctx.send(json["image"])
@bot.command(hidden=True)
@commands.check(is_ginlang)
async def restart(ctx):
await ctx.send("shutting down. beep boop.")
await exit()
@bot.command(brief="bin eaters")
async def raccoon(ctx):
@ -88,6 +93,12 @@ async def raccoon(ctx):
await ctx.send(json["fact"])
await ctx.send(json["image"])
@bot.command(hidden=True)
@commands.check(is_ginlang)
async def restart(ctx):
await ctx.send("shutting down, beep boop.")
exit()
@bot.command(hidden=True)
@commands.check(is_ginlang)

4
start Executable file
View file

@ -0,0 +1,4 @@
while [ true ]
do
python3 bot.py
done