diff --git a/Assets/Scripts/Entity/Player/PlayerController.cs b/Assets/Scripts/Entity/Player/PlayerController.cs index c0ad11c98e..21cd055ff9 100644 --- a/Assets/Scripts/Entity/Player/PlayerController.cs +++ b/Assets/Scripts/Entity/Player/PlayerController.cs @@ -1198,8 +1198,6 @@ public void PreRespawn() { [PunRPC] public void Respawn(PhotonMessageInfo info) { - if (info.Sender != photonView.Owner) - return; gameObject.SetActive(true); dead = false; @@ -1242,6 +1240,8 @@ public void Respawn(PhotonMessageInfo info) { if (photonView.IsMine) ScoreboardUpdater.instance.OnRespawnToggle(); + + UpdateGameState(); } #endregion