fix bad end hint logic

This commit is contained in:
duncathan 2020-03-03 08:34:05 -06:00
parent dc6ac6040a
commit 435d5347f0

View file

@ -603,7 +603,7 @@ end
function worldGraph:getHintableLocations(obj)
local locations = {}
for k, location in pairs(_.shuffle(self:getFilledLocations(true))) do
if obj == "objBadEnd" and location.item.name == "Rusty Key" or location.item.name == "ID Card" then
if (obj == "objBadEnd" and location.item.name == "Rusty Key") or (obj ~= "objBadEnd" and location.item.name == "ID Card") then
table.insert(locations, 1, location) -- put that item on the top to guarantee a hint for it
else
table.insert(locations, location)