Skip to content

Commit

Permalink
chisobcat
Browse files Browse the repository at this point in the history
  • Loading branch information
howardt12345 committed Oct 11, 2023
1 parent 008c9e9 commit 039a8f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions commands/meow/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
'錨'
] + POSSIBLE_MEOW_REACTS

CHISOBCAT = '<:ChisobCat:1157361078452375582>'
SHIBELOL = '<:dogekek:1132350110148333718>'

MEOW_REGEX = compile(
Expand Down
4 changes: 2 additions & 2 deletions commands/meow/meow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import discord

from commands.modules.probability import mock_bernoulli
from .consts import MEOW, MEOW_REGEX, POSSIBLE_MEOW_MESSAGES, POSSIBLE_MEOW_REACTS, SHIBELOL, TRADITIONAL_CAT
from .consts import CHISOBCAT, MEOW, MEOW_REGEX, POSSIBLE_MEOW_MESSAGES, POSSIBLE_MEOW_REACTS, SHIBELOL, TRADITIONAL_CAT


def is_meow_message(message: discord.Message):
Expand Down Expand Up @@ -32,7 +32,7 @@ async def react_meow(message: discord.Message):


async def shibelol(message: discord.Message):
await message.add_reaction(SHIBELOL)
await message.add_reaction(CHISOBCAT)
if mock_bernoulli(0.25):
message.reply(SHIBELOL)

Expand Down

0 comments on commit 039a8f7

Please sign in to comment.