mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
Adventure: create_item AttributeError -> KeyError #4219
This commit is contained in:
@@ -446,7 +446,7 @@ class AdventureWorld(World):
|
|||||||
# end of ordered Main.py calls
|
# end of ordered Main.py calls
|
||||||
|
|
||||||
def create_item(self, name: str) -> Item:
|
def create_item(self, name: str) -> Item:
|
||||||
item_data: ItemData = item_table.get(name)
|
item_data: ItemData = item_table[name]
|
||||||
return AdventureItem(name, item_data.classification, item_data.id, self.player)
|
return AdventureItem(name, item_data.classification, item_data.id, self.player)
|
||||||
|
|
||||||
def create_event(self, name: str, classification: ItemClassification) -> Item:
|
def create_event(self, name: str, classification: ItemClassification) -> Item:
|
||||||
|
Reference in New Issue
Block a user