From d44f757c7a675fe6e0de745780af8a35aa067853 Mon Sep 17 00:00:00 2001 From: hillexed Date: Sun, 21 Feb 2021 19:50:28 -0500 Subject: [PATCH] Rename name swapping weather to Breezy --- weather.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/weather.py b/weather.py index b14cd9e..8996a19 100644 --- a/weather.py +++ b/weather.py @@ -244,10 +244,10 @@ class Sun2(Weather): "weather_message": True }) -class NameSwappyWeather(Weather): +class Breezy(Weather): def __init__(self, game): - self.name = "Literacy" - self.emoji = "📚" + self.name = "Breezy" + self.emoji = "🎐" self.activation_chance = 0.05 def activate(self, game, result): @@ -335,7 +335,7 @@ def all_weathers(): "Drizzle" : Drizzle, # "Sun 2": Sun2, "Feedback": Feedback, - "Literacy": NameSwappyWeather, + "Breezy": Breezy, } return weathers_dic