adjusted weather base class to fit with its children
This commit is contained in:
parent
69064257ad
commit
3161d67ebb
|
@ -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}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue