22 lines
547 B
Python
22 lines
547 B
Python
import discord
|
|
from utils.emoji import MINECRAFT
|
|
from discord.ext import commands
|
|
|
|
|
|
class _mc(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
"""Minecraft commands"""
|
|
|
|
def help_custom(self):
|
|
emoji = MINECRAFT
|
|
label = "Minecraft Commands"
|
|
description = "Show you Commands of Minecraft"
|
|
return emoji, label, description
|
|
|
|
@commands.group()
|
|
async def __Minecraft__(self, ctx: commands.Context):
|
|
"""`minecraft setup` , `minecraft reset` , `minecraft status`"""
|
|
pass
|