Fix RCHK command

This commit is contained in:
Zeva Rose 2021-08-02 17:56:37 -06:00
parent 316384fd52
commit fe913f0a3b
2 changed files with 7 additions and 4 deletions

View file

@ -12,7 +12,7 @@ from PIL import Image, ImageDraw
import jarvis
from jarvis import jarvis_self, logo
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.field import Field
@ -65,9 +65,7 @@ class UtilCog(commands.Cog):
@cog_ext.cog_slash(name="rchk", description="Robot Camo HK416")
async def _rchk(self, ctx: SlashContext):
await ctx.send(
content=":RCHK1::RCHK2::RCHK3::RCHK4:\n:RCHK5::RCHK6::RCHK7:"
)
await ctx.send(content=hk)
@cog_ext.cog_slash(
name="rcauto",

View file

@ -97,3 +97,8 @@ names = {
861486469914296360: "rcApost",
861487316979679263: "rcDot",
}
hk = """
<:RCHK1:871903389838106715><:RCHK2:871903867107946586><:RCHK3:871903905162887179><:RCHK4:871903939627462676>
<:RCHK5:871903954903130162><:RCHK6:871903970430435348><:RCHK7:871903984137429032>
"""