Skip to content

Commit 40c2d2b

Browse files
committed
Rename forceOverrideCommandLineArgs
1 parent 45b04ca commit 40c2d2b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

com.unity.netcode.gameobjects/Runtime/Transports/UTP/UnityTransport.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -861,10 +861,10 @@ private void ParseCommandLineOptions()
861861
/// <param name="ipv4Address">The remote IP address (despite the name, can be an IPv6 address or a domain name).</param>
862862
/// <param name="port">The remote port to connect to.</param>
863863
/// <param name="listenAddress">The address the server is going to listen on.</param>
864-
/// <param name="overrideCommandLineArgs">Should override port value</param>
865-
public void SetConnectionData(string ipv4Address, ushort port, string listenAddress = null, bool overrideCommandLineArgs = false)
864+
/// <param name="forceOverrideCommandLineArgs">Should override port value</param>
865+
public void SetConnectionData(string ipv4Address, ushort port, string listenAddress = null, bool forceOverrideCommandLineArgs = false)
866866
{
867-
if (overrideCommandLineArgs)
867+
if (forceOverrideCommandLineArgs)
868868
{
869869
if (m_NetworkManager.LogLevel <= LogLevel.Developer)
870870
{

testproject/Packages/manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"com.unity.addressables": "2.7.4",
55
"com.unity.ai.navigation": "2.0.9",
66
"com.unity.collab-proxy": "2.10.1",
7+
"com.unity.dedicated-server": "1.6.1",
78
"com.unity.ide.rider": "3.0.38",
89
"com.unity.ide.visualstudio": "2.0.25",
910
"com.unity.mathematics": "1.3.3",

0 commit comments

Comments
 (0)