TravelTimN / oregon-trail-python

Oregon Trail, in Python
2 stars 0 forks source link

UnboundLocalError: local variable 'item_lost' referenced before assignment #10

Closed TravelTimN closed 1 year ago

TravelTimN commented 1 year ago

image

This was caused by fires in the wagon, burning items the player didn't have to burn.

image

TravelTimN commented 1 year ago

Fixed by adding: if existing_supply_qty > 0: # only if this supply exists

image

image