From 438e53d25e2cf16e67ab9e651fca73a443282c78 Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Sat, 9 Oct 2021 20:48:13 -0700 Subject: [PATCH] hints for visible tech should be free no matter who it is for. --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index 776438ac..638fecb2 100644 --- a/Main.py +++ b/Main.py @@ -270,7 +270,7 @@ def main(args, seed=None): # item code None should be event, location.address should then also be None assert location.item.code is not None locations_data[location.player][location.address] = location.item.code, location.item.player - if location.player in sending_visible_players and location.item.player != location.player: + if location.player in sending_visible_players: precollect_hint(location) elif location.name in world.start_location_hints[location.player]: precollect_hint(location)