Don't split up across two methods bc john asked to

This commit is contained in:
Nick 2023-10-18 17:26:52 -04:00
parent 0b10c6d0b5
commit b45fe49a7c

View File

@ -71,6 +71,9 @@ namespace NewHorizons.Handlers
{
StrangerRemoved();
}
// Put it back after banishing it else there are weird graphical bugs
SearchUtilities.Find("Sun_Body").gameObject.transform.position = CenterOfTheUniverse.s_instance.transform.position;
}
}, 2); // Have to wait or shit goes wild
@ -122,9 +125,6 @@ namespace NewHorizons.Handlers
// Just to be safe
SunLightEffectsController.Instance.Update();
// Put it back after banishing it else there are weird graphical bugs
sun.gameObject.transform.position = CenterOfTheUniverse.s_instance.transform.position;
}
private static void TimberHearthRemoved()