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:
bufar 2021-02-04 16:57:27 -05:00 committed by GitHub
parent ed90af78d7
commit e77ca6934f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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