diff options
| author | seth <[email protected]> | 2023-01-10 16:58:42 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-01-10 16:58:42 -0500 |
| commit | 2475633b0f44a3121b4352c71819acb5135a12b9 (patch) | |
| tree | 626c95df9388b46399d002363d94117bd46450a8 | |
| parent | 3cd5709b00738d8f3b79f0892d978c18d302c2d1 (diff) | |
fix: use correct moyai
| -rw-r--r-- | src/moyai_bot/bot.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/moyai_bot/bot.py b/src/moyai_bot/bot.py index 1a5ada8..60f3474 100644 --- a/src/moyai_bot/bot.py +++ b/src/moyai_bot/bot.py @@ -24,7 +24,8 @@ async def on_message(message: discord.Message): return echo_messages = [ - "moyai", str(discord.utils.get(moyai.emojis, name="moyai")) + "moyai", + "🗿", ] try: index = echo_messages.index(message.content.lower()) @@ -53,7 +54,7 @@ async def ask_slash_command(interaction: discord.Interaction): async def moyaispam(ctx: commands.Context): msg = str() for _ in range(30): - msg += str(discord.utils.get(moyai.emojis, name="moyai")) + msg += "🗿" await ctx.send(msg) |
