cosmetics

master
UbitUmarov 2020-04-09 14:01:15 +01:00
parent c99014991b
commit 05c77f9342
1 changed files with 2 additions and 13 deletions

View File

@ -13474,26 +13474,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP
/// <summary>
/// Packet handling method.
/// </summary>
public PacketMethod method { get; set; }
public PacketMethod method;
/// <summary>
/// Should this packet be handled asynchronously?
/// </summary>
public bool Async { get; set; }
public bool Async;
}
public class AsyncPacketProcess
{
public readonly Packet Pack = null;
public readonly PacketMethod Method = null;
public AsyncPacketProcess(PacketMethod pMethod, Packet pPack)
{
Method = pMethod;
Pack = pPack;
}
}
public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages)
{
AvatarInterestsReplyPacket packet = (AvatarInterestsReplyPacket)PacketPool.Instance.GetPacket(PacketType.AvatarInterestsReply);