1
0
Fork 0

Add support of disabled extension for tex

This commit is contained in:
Ethanell 2020-11-05 15:02:15 +01:00
parent 827ec2aadb
commit e369b23e96

View file

@ -3,6 +3,7 @@ from urllib.parse import urlencode
from discord import Embed from discord import Embed
from discord.ext import commands from discord.ext import commands
from administrator.check import is_enabled
from administrator.logger import logger from administrator.logger import logger
@ -18,6 +19,7 @@ class TeX(commands.Cog):
return "Render TeX formula" return "Render TeX formula"
@commands.group("tex", pass_context=True) @commands.group("tex", pass_context=True)
@is_enabled()
async def tex(self, ctx: commands.Context): async def tex(self, ctx: commands.Context):
if ctx.message.content.count("`") == 2: if ctx.message.content.count("`") == 2:
start = ctx.message.content.find("`") start = ctx.message.content.find("`")