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 (#1050)
## Bug fixes - 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:
commit
cb17ba061e
@ -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