FFMQ: Remove debug print statements (#2882)
This commit is contained in:
parent
f17ff15669
commit
ad3ffde785
|
@ -220,15 +220,12 @@ def stage_set_rules(multiworld):
|
||||||
for player in no_enemies_players:
|
for player in no_enemies_players:
|
||||||
for location in vendor_locations:
|
for location in vendor_locations:
|
||||||
if multiworld.accessibility[player] == "locations":
|
if multiworld.accessibility[player] == "locations":
|
||||||
print("exclude")
|
|
||||||
multiworld.get_location(location, player).progress_type = LocationProgressType.EXCLUDED
|
multiworld.get_location(location, player).progress_type = LocationProgressType.EXCLUDED
|
||||||
else:
|
else:
|
||||||
print("unreachable")
|
|
||||||
multiworld.get_location(location, player).access_rule = lambda state: False
|
multiworld.get_location(location, player).access_rule = lambda state: False
|
||||||
else:
|
else:
|
||||||
# There are not enough junk items to fill non-minimal players' vendors. Just set an item rule not allowing
|
# There are not enough junk items to fill non-minimal players' vendors. Just set an item rule not allowing
|
||||||
# advancement items so that useful items can be placed.
|
# advancement items so that useful items can be placed
|
||||||
print("no advancement")
|
|
||||||
for player in no_enemies_players:
|
for player in no_enemies_players:
|
||||||
for location in vendor_locations:
|
for location in vendor_locations:
|
||||||
multiworld.get_location(location, player).item_rule = lambda item: not item.advancement
|
multiworld.get_location(location, player).item_rule = lambda item: not item.advancement
|
||||||
|
|
Loading…
Reference in New Issue