async def ignoreplebs(ctx):
    if guild_config.toggle(ctx, 'ignoreplebs'):
        await ctx.send('D--> I shall listen only to b100 b100ded commands.')
    else:
        await ctx.send(
            'D--> Unfortunately, I must now listen to the lower classes.')
async def togglelatex(ctx):
    if guild_config.toggle(ctx, 'enablelatex'):
        await ctx.send('D--> Latex functions have been enabled.')
    else:
        await ctx.send('D--> Latex functions have been disabled.')
async def autoreact(ctx):
    if guild_config.toggle(ctx, 'autoreact'):
        await ctx.send('D--> ❤️')
    else:
        await ctx.send('D--> 💔')