Aura.Channel.Network.Sending.Send.PartyTypeUpdate C# (CSharp) Method

PartyTypeUpdate() public static method

Informs party members of a party type change (Dungeon, Normal, Jam, etc)
public static PartyTypeUpdate ( Party party ) : void
party Party
return void
		public static void PartyTypeUpdate(Party party)
		{
			var packet = new Packet(Op.PartyTypeUpdate, 0);

			packet.PutInt((int)party.Type);

			party.Broadcast(packet, true);
		}
Send