From e77ca6934f405d5276b54dbe4ac9e382cc06b57c Mon Sep 17 00:00:00 2001 From: bufar <78323705+bufar@users.noreply.github.com> Date: Thu, 4 Feb 2021 16:57:27 -0500 Subject: [PATCH] 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. --- games.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games.py b/games.py index 0773eb8..f12b787 100644 --- a/games.py +++ b/games.py @@ -884,7 +884,7 @@ class weather(object): def __init__(self, new_name, new_emoji): self.name = new_name - self.emoji = new_emoji + self.emoji = new_emoji + "\uFE00" self.counter_away = 0 self.counter_home = 0