TravelTimN / oregon-trail-python

Oregon Trail, in Python
2 stars 0 forks source link

AttributeError: 'Player' object has no attribute 'accident' #1

Closed TravelTimN closed 1 year ago

TravelTimN commented 1 year ago

image

Player.name works fine. But any other Player value is not accessible between files.

TravelTimN commented 1 year ago

Fixed by adding: super().__init__(name) To the Player() class.

Thanks @10xOXR!