Skip to content

Commit

Permalink
[Discord] Use character name escape sequences for emojis for RPS cog
Browse files Browse the repository at this point in the history
Use character name escape sequences for Unicode 14.0 emojis for RPS cog
  • Loading branch information
Harmon758 committed Dec 17, 2023
1 parent c8c6272 commit 7509c30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Discord/cogs/rps.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"rock": '\N{RAISED FIST}',
"paper": '\N{RAISED HAND}',
"scissors": '\N{VICTORY HAND}',
"lizard": '🫳', # Replace with '\N{PALM DOWN HAND}' in Python 3.11
"lizard": '\N{PALM DOWN HAND}',
"Spock": '\N{RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS}',
"Spider-Man": '\N{SIGN OF THE HORNS}',
"Batman": '\N{CALL ME HAND}',
"wizard": '🫴', # Replace with '\N{PALM UP HAND}' in Python 3.11
"wizard": '\N{PALM UP HAND}',
"Glock": '\N{WHITE LEFT POINTING BACKHAND INDEX}'
}

Expand Down

0 comments on commit 7509c30

Please sign in to comment.