From 469807ba01c343401609649fb385edb847a489bf Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Fri, 14 Apr 2023 02:09:44 +0200 Subject: [PATCH] Core: remove outdated assert on push_item --- BaseClasses.py | 1 - 1 file changed, 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 1368d162..29b2c3f6 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -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: