mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
fix hawkbar's eye of the universe bug
- fixes a bug at the eye of the universe where new horizons checks for a condition instead of a persistent condition
This commit is contained in:
parent
264db8b11f
commit
343e54888a
@ -25,7 +25,7 @@ namespace NewHorizons.Builder.Props
|
||||
travelerData.requirementsMet = false;
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(info.requiredPersistentCondition) && !DialogueConditionManager.SharedInstance.GetConditionState(info.requiredPersistentCondition))
|
||||
if (!string.IsNullOrEmpty(info.requiredPersistentCondition) && !PlayerData.GetPersistentCondition(info.requiredPersistentCondition))
|
||||
{
|
||||
travelerData.requirementsMet = false;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user