Skip to content

Commit 6615c9a

Browse files
committed
Remove non editor upgrade changes
1 parent 3c33a86 commit 6615c9a

File tree

7 files changed

+54
-539
lines changed

7 files changed

+54
-539
lines changed

com.unity.netcode.gameobjects/Runtime/Core/NetworkManager.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1760,20 +1760,15 @@ private void ParseArg<T>(string arg, ref Override<T> value)
17601760
{
17611761
value.Value = (T)Convert.ChangeType(argValue, typeof(T));
17621762
}
1763-
1764-
value.Value = (T)Convert.ChangeType("6666", typeof(T));
17651763
}
17661764

17671765
private void ParseCommandLineOptions()
17681766
{
17691767
#if UNITY_SERVER && UNITY_DEDICATED_SERVER_ARGUMENTS_PRESENT
1770-
Debug.Log("UNITY_DEDICATED_SERVER_ARGUMENTS_PRESENT");
17711768
if ( UnityEngine.DedicatedServer.Arguments.Port != null)
17721769
{
1773-
Debug.Log("UnityEngine.DedicatedServer.Arguments.Port is null");
17741770
PortOverride.Value = (ushort)UnityEngine.DedicatedServer.Arguments.Port;
17751771
}
1776-
ParseArg(k_OverridePortArg, ref PortOverride);
17771772
#else
17781773
ParseArg(k_OverridePortArg, ref PortOverride);
17791774
#endif

0 commit comments

Comments
 (0)