Merge pull request #662 from qsb-dev/headless-suited

Fix initial state having headless Hearthians
This commit is contained in:
xen-42 2024-02-23 01:13:44 -05:00 committed by GitHub
commit 2933031692
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,10 +67,8 @@ public class HelmetAnimator : MonoBehaviour
{
_fakeHelmetDitheringAnimator.SetVisible(false);
FakeHelmet.gameObject.SetActive(false);
if (!SuitGroup.activeSelf)
{
FakeHead.gameObject.SetActive(false);
}
// If the player is currently wearing their suit but has no helmet on, make sure to make the head visible (#655)
FakeHead.gameObject.SetActive(SuitGroup.activeSelf);
}
}