adjusted weather base class to fit with its children

This commit is contained in:
Sakimori 2021-03-07 12:51:17 -05:00
parent 69064257ad
commit 3161d67ebb

View file

@ -2,10 +2,12 @@ import random, math, roman
from gametext import appearance_outcomes, base_string
class Weather:
def __init__(self, game):
self.name = "Sunny"
self.emoji = "🌞"
def __init__(self, game):
pass
def __str__(self):
return f"{self.emoji} {self.name}"