You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating to version 95.1.6, I noticed synchronization issues. Through multiple debugging sessions, I found the problem was caused by my repeated calls to AddPlayerForConnection. Within AddPlayerForConnection, it calls SetClientReady(conn), and multiple calls to SetClientReady(conn) will clear pendingSpawns. I suggest adding "if (conn.isReady) return;" in the SetClientReady function.