This commit is contained in:
JohnCorby 2022-07-21 16:56:53 -07:00
parent d0d72780f1
commit cb25e5d113

View File

@ -273,7 +273,8 @@ namespace NewHorizons.Handlers
foreach (var childObj in transforms.Where(x => x.GetPath() == path)) foreach (var childObj in transforms.Where(x => x.GetPath() == path))
{ {
flag = false; flag = false;
childObj.gameObject.SetActive(false); // idk why we wait here but we do
Delay.FireInNUpdates(() => childObj.gameObject.SetActive(false), 2);
} }
if (flag) Logger.LogWarning($"Couldn't find \"{childPath}\"."); if (flag) Logger.LogWarning($"Couldn't find \"{childPath}\".");