Skip to content

Commit

Permalink
react baltics: elif -> if
Browse files Browse the repository at this point in the history
  • Loading branch information
chanomkaimuk committed Sep 20, 2023
1 parent 4f8be58 commit 03f62e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/react_baltics/react_baltics.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async def send_react_baltic(message: discord.Message):
await random_react(message, POSSIBLE_REACTS, 0.40)
if LV_REGEX.search(message.content):
await random_react(message, LV_REACTS, 0.69)
elif LT_REGEX.search(message.content):
if LT_REGEX.search(message.content):
await random_react(message, LT_REACTS, 0.69)
elif ET_REGEX.search(message.content):
if ET_REGEX.search(message.content):
await random_react(message, ET_REACTS, 0.69)

0 comments on commit 03f62e5

Please sign in to comment.