Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ private bool ClientBindAndConnect()
//reflection, but this does not live in the context of a performance-critical loop, it runs once at initial connection time.
if (m_RelayServerData.Equals(default(RelayServerData)))
{
Debug.LogError("You must call SetRelayServerData() at least once before calling StartRelayServer.");
Debug.LogError("You must call SetRelayServerData() at least once before calling StartClient.");
return false;
}

Expand Down Expand Up @@ -710,7 +710,7 @@ private bool StartRelayServer()
//reflection, but this does not live in the context of a performance-critical loop, it runs once at initial connection time.
if (m_RelayServerData.Equals(default(RelayServerData)))
{
Debug.LogError("You must call SetRelayServerData() at least once before calling StartRelayServer.");
Debug.LogError("You must call SetRelayServerData() at least once before calling StartServer.");
return false;
}
else
Expand Down