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

AccountInfoRequestR() public static method

Sends AccountInfoRequestR to client, with client's account's data.
public static AccountInfoRequestR ( Aura.Login.Network.LoginClient client, bool success ) : void
client Aura.Login.Network.LoginClient
success bool
return void
		public static void AccountInfoRequestR(LoginClient client, bool success)
		{
			var packet = new Packet(Op.AccountInfoRequestR, MabiId.Login);
			packet.PutByte(success);

			if (success)
				packet.Add(client.Account);

			client.Send(packet);
		}