Skip to content

Commit

Permalink
fix: Fixed NetworkRoomManager Template
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Langsenkamp committed Feb 14, 2020
1 parent 853e5ab commit 1662c5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ public class #SCRIPTNAME# : NetworkRoomManager
/// <para>See OnRoomServerCreateGamePlayer to customize the player object for the initial GamePlay scene.</para>
/// </summary>
/// <param name="conn">The connection the player object is for.</param>
public virtual void OnRoomServerAddPlayer(NetworkConnection conn)
public override void OnRoomServerAddPlayer(NetworkConnection conn)
{
base.OnServerAddPlayer(conn);
base.OnRoomServerAddPlayer(conn);
}

/// <summary>
Expand Down

0 comments on commit 1662c5a

Please sign in to comment.