fix: minor fix for take_anys

fix: money balancing - initialization in a good case
This commit is contained in:
aerinon
2023-12-13 13:59:34 -07:00
committed by codemann8
parent 2d467efded
commit bd7ce54dd3
3 changed files with 7 additions and 1 deletions

View File

@@ -1555,6 +1555,9 @@ class Region(object):
return self.is_dark_world if self.world.mode[player] != 'inverted' else self.is_light_world
def is_outdoors(self):
return self.type in {RegionType.LightWorld, RegionType.DarkWorld}
def __str__(self):
return str(self.__unicode__())