Fix RCHK command
This commit is contained in:
parent
316384fd52
commit
fe913f0a3b
2 changed files with 7 additions and 4 deletions
|
@ -12,7 +12,7 @@ from PIL import Image, ImageDraw
|
||||||
import jarvis
|
import jarvis
|
||||||
from jarvis import jarvis_self, logo
|
from jarvis import jarvis_self, logo
|
||||||
from jarvis.config import get_config
|
from jarvis.config import get_config
|
||||||
from jarvis.data.robotcamo import emotes, names
|
from jarvis.data.robotcamo import emotes, hk, names
|
||||||
from jarvis.utils import build_embed, convert_bytesize, get_repo_hash
|
from jarvis.utils import build_embed, convert_bytesize, get_repo_hash
|
||||||
from jarvis.utils.field import Field
|
from jarvis.utils.field import Field
|
||||||
|
|
||||||
|
@ -65,9 +65,7 @@ class UtilCog(commands.Cog):
|
||||||
|
|
||||||
@cog_ext.cog_slash(name="rchk", description="Robot Camo HK416")
|
@cog_ext.cog_slash(name="rchk", description="Robot Camo HK416")
|
||||||
async def _rchk(self, ctx: SlashContext):
|
async def _rchk(self, ctx: SlashContext):
|
||||||
await ctx.send(
|
await ctx.send(content=hk)
|
||||||
content=":RCHK1::RCHK2::RCHK3::RCHK4:\n:RCHK5::RCHK6::RCHK7:"
|
|
||||||
)
|
|
||||||
|
|
||||||
@cog_ext.cog_slash(
|
@cog_ext.cog_slash(
|
||||||
name="rcauto",
|
name="rcauto",
|
||||||
|
|
|
@ -97,3 +97,8 @@ names = {
|
||||||
861486469914296360: "rcApost",
|
861486469914296360: "rcApost",
|
||||||
861487316979679263: "rcDot",
|
861487316979679263: "rcDot",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
hk = """
|
||||||
|
<:RCHK1:871903389838106715><:RCHK2:871903867107946586><:RCHK3:871903905162887179><:RCHK4:871903939627462676>
|
||||||
|
<:RCHK5:871903954903130162><:RCHK6:871903970430435348><:RCHK7:871903984137429032>
|
||||||
|
"""
|
||||||
|
|
Loading…
Add table
Reference in a new issue