Core: remove outdated assert on push_item

This commit is contained in:
Fabian Dill 2023-04-14 02:09:44 +02:00 committed by Fabian Dill
parent 8ada91939c
commit 469807ba01
1 changed files with 0 additions and 1 deletions

View File

@ -445,7 +445,6 @@ class MultiWorld():
self.state.collect(item, 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
item.location = location
if collect: