forked from IPD/Foxtrot
restart script + restart command -contrib: Ecolipsy
This commit is contained in:
parent
a096353bf7
commit
a3ad473a61
2 changed files with 12 additions and 2 deletions
10
bot.py
10
bot.py
|
@ -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)
|
||||
|
@ -88,6 +88,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
4
start
Executable file
|
@ -0,0 +1,4 @@
|
|||
while [ true ]
|
||||
do
|
||||
python3 bot.py
|
||||
done
|
Loading…
Reference in a new issue