Core: remove outdated assert on push_item
This commit is contained in:
parent
8ada91939c
commit
469807ba01
|
@ -445,7 +445,6 @@ class MultiWorld():
|
||||||
self.state.collect(item, True)
|
self.state.collect(item, True)
|
||||||
|
|
||||||
def push_item(self, location: Location, item: Item, collect: bool = True):
|
def push_item(self, location: Location, item: Item, collect: bool = True):
|
||||||
assert location.can_fill(self.state, item, False), f"Cannot place {item} into {location}."
|
|
||||||
location.item = item
|
location.item = item
|
||||||
item.location = location
|
item.location = location
|
||||||
if collect:
|
if collect:
|
||||||
|
|
Loading…
Reference in New Issue