mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-05-27 15:50:02 -07:00
Core: move multiple Item properties into a single Flag (#638)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
from typing import NamedTuple, Union
|
||||
import logging
|
||||
|
||||
from BaseClasses import Item, Tutorial
|
||||
from BaseClasses import Item, Tutorial, ItemClassification
|
||||
|
||||
from ..AutoWorld import World, WebWorld
|
||||
from NetUtils import SlotType
|
||||
@@ -46,7 +46,7 @@ class GenericWorld(World):
|
||||
|
||||
def create_item(self, name: str) -> Item:
|
||||
if name == "Nothing":
|
||||
return Item(name, False, -1, self.player)
|
||||
return Item(name, ItemClassification.filler, -1, self.player)
|
||||
raise KeyError(name)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user