mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
NetworkClient.PrepareForConnect: removed unused usePlatformSpecificProtocols parameter
This commit is contained in:
parent
2c10471470
commit
b74b02731f
@ -90,7 +90,7 @@ public NetworkClient(NetworkConnection conn)
|
||||
|
||||
public void Connect(string serverIp, int serverPort)
|
||||
{
|
||||
PrepareForConnect(false);
|
||||
PrepareForConnect();
|
||||
|
||||
if (LogFilter.logDebug) { Debug.Log("Client Connect: " + serverIp + ":" + serverPort); }
|
||||
|
||||
@ -107,7 +107,7 @@ public void Connect(string serverIp, int serverPort)
|
||||
m_Connection.Initialize(m_ServerIp, m_ClientId, 0);
|
||||
}
|
||||
|
||||
void PrepareForConnect(bool usePlatformSpecificProtocols)
|
||||
void PrepareForConnect()
|
||||
{
|
||||
SetActive(true);
|
||||
RegisterSystemHandlers(false);
|
||||
|
Loading…
Reference in New Issue
Block a user