The Messenger: Fix location access for Figurine Shop Locations (#1975)
This commit is contained in:
parent
09f4b7ec38
commit
18c9779815
|
@ -67,7 +67,8 @@ class MessengerShopLocation(MessengerLocation):
|
||||||
cost *= 2
|
cost *= 2
|
||||||
can_afford = state.has("Shards", self.player, min(cost, world.total_shards))
|
can_afford = state.has("Shards", self.player, min(cost, world.total_shards))
|
||||||
if "Figurine" in self.name:
|
if "Figurine" in self.name:
|
||||||
return state.has("Money Wrench", self.player) and can_afford
|
return state.has("Money Wrench", self.player) and can_afford\
|
||||||
|
and state.can_reach("Money Wrench", "Location", self.player)
|
||||||
return can_afford
|
return can_afford
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue