Aura.Login.Network.Send.CreateR C# (CSharp) Method

CreateR() private static method

One response to respond them all.
private static CreateR ( Aura.Login.Network.LoginClient client, int op, string serverName, long id ) : void
client Aura.Login.Network.LoginClient
op int
serverName string
id long
return void
		private static void CreateR(LoginClient client, int op, string serverName, long id)
		{
			var response = new Packet(op, MabiId.Login);
			response.PutByte(serverName != null);

			if (serverName != null)
			{
				response.PutString(serverName);
				response.PutLong(id);
			}

			client.Send(response);
		}