Encourage emoji to be drawn as images
Appends "Unicode Variant Selector 1" to the emoji property of weather, so that systems will default to drawing them as images instead of text, when able. Currently the heavy snow emoji is drawn as text in the discord end-of-game report on windows 10, similar to the Moist Talkers' ORB on blaseball.com. This change is untested and superficial. But it's been every so slightly annoying me and I wanted to fix it.
This commit is contained in:
parent
ed90af78d7
commit
e77ca6934f
2
games.py
2
games.py
|
@ -884,7 +884,7 @@ class weather(object):
|
||||||
|
|
||||||
def __init__(self, new_name, new_emoji):
|
def __init__(self, new_name, new_emoji):
|
||||||
self.name = new_name
|
self.name = new_name
|
||||||
self.emoji = new_emoji
|
self.emoji = new_emoji + "\uFE00"
|
||||||
self.counter_away = 0
|
self.counter_away = 0
|
||||||
self.counter_home = 0
|
self.counter_home = 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue