copy code from Init so it behaves identically

This commit is contained in:
JohnCorby 2022-08-02 21:35:06 -07:00
parent 2e80ca71d4
commit 331d26d2e4

View File

@ -179,7 +179,10 @@ public class WakeUpSync : NetworkBehaviour
else
{
// should only happen from Init so we gotta wait
Delay.RunWhen(() => QSBWorldSync.AllObjectsReady, WakeUp);
if (!_hasWokenUp)
{
Delay.RunWhen(() => QSBWorldSync.AllObjectsReady, WakeUp);
}
}
}