Disable gib hug until an issue is fixed
This commit is contained in:
parent
5c6a48537a
commit
1f54938ec4
1 changed files with 3 additions and 1 deletions
4
bot.py
4
bot.py
|
@ -4,6 +4,8 @@ import discord
|
||||||
from discord import File, Streaming, Game, Activity, ActivityType, Status
|
from discord import File, Streaming, Game, Activity, ActivityType, Status
|
||||||
from discord.ext import commands, tasks
|
from discord.ext import commands, tasks
|
||||||
import io, aiohttp, asyncio, json, random, logging, requests
|
import io, aiohttp, asyncio, json, random, logging, requests
|
||||||
|
|
||||||
|
|
||||||
foxmsgs = [
|
foxmsgs = [
|
||||||
'floofy fox',
|
'floofy fox',
|
||||||
'here fops',
|
'here fops',
|
||||||
|
@ -53,8 +55,8 @@ async def fox(ctx):
|
||||||
async def hug(ctx, *, name=None):
|
async def hug(ctx, *, name=None):
|
||||||
if not name:
|
if not name:
|
||||||
return await ctx.send("Foxtrot hugs "+ctx.author.name+"! :3")
|
return await ctx.send("Foxtrot hugs "+ctx.author.name+"! :3")
|
||||||
await ctx.send("This command is temporarily disabled until a major issue is fixed. We are sorry for the downtime, updates can be seen at <https://code.cat.casa/IPD/Foxtrot>")
|
|
||||||
#await ctx.send(ctx.author.name+f" hugs {name}! :3")
|
#await ctx.send(ctx.author.name+f" hugs {name}! :3")
|
||||||
|
await ctx.send("This command is currently disabled until an issue is fixed.")
|
||||||
|
|
||||||
@bot.command(brief="gives the top.gg vote link")
|
@bot.command(brief="gives the top.gg vote link")
|
||||||
async def vote(ctx):
|
async def vote(ctx):
|
||||||
|
|
Loading…
Reference in a new issue