A Short Hike: Add option to customize filler coin count (#3004)

Co-authored-by: Exempt-Medic <60412657+Exempt-Medic@users.noreply.github.com>
This commit is contained in:
chandler05
2024-03-22 15:30:23 -05:00
committed by GitHub
parent ca549df20a
commit 96d93c1ae3
2 changed files with 17 additions and 4 deletions

View File

@@ -41,11 +41,8 @@ class ShortHikeWorld(World):
required_client_version = (0, 4, 4)
def __init__(self, multiworld, player):
super(ShortHikeWorld, self).__init__(multiworld, player)
def get_filler_item_name(self) -> str:
return "13 Coins"
return self.options.filler_coin_amount.current_option_name
def create_item(self, name: str) -> "ShortHikeItem":
item_id: int = self.item_name_to_id[name]