Updated small party window packets.
Contributed by Mantra.
This commit is contained in:
parent
f4d62a630f
commit
4a05835863
@ -53,6 +53,7 @@ public class PartySmallWindowAdd implements IClientOutgoingPacket
|
||||
packet.writeH(_member.getClassId().getId());
|
||||
packet.writeC(0x00);
|
||||
packet.writeH(_member.getRace().ordinal());
|
||||
packet.writeD(0x00); // 228
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
@ -61,6 +61,8 @@ public class PartySmallWindowAll implements IClientOutgoingPacket
|
||||
packet.writeH(member.getClassId().getId());
|
||||
packet.writeC(0x01); // Unk
|
||||
packet.writeH(member.getRace().ordinal());
|
||||
packet.writeD(0x00); // 228
|
||||
|
||||
final Summon pet = member.getPet();
|
||||
packet.writeD(member.getServitors().size() + (pet != null ? 1 : 0)); // Summon size, one only atm
|
||||
if (pet != null)
|
||||
|
@ -53,6 +53,7 @@ public class PartySmallWindowAdd implements IClientOutgoingPacket
|
||||
packet.writeH(_member.getClassId().getId());
|
||||
packet.writeC(0x00);
|
||||
packet.writeH(_member.getRace().ordinal());
|
||||
packet.writeD(0x00); // 228
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
@ -61,6 +61,8 @@ public class PartySmallWindowAll implements IClientOutgoingPacket
|
||||
packet.writeH(member.getClassId().getId());
|
||||
packet.writeC(0x01); // Unk
|
||||
packet.writeH(member.getRace().ordinal());
|
||||
packet.writeD(0x00); // 228
|
||||
|
||||
final Summon pet = member.getPet();
|
||||
packet.writeD(member.getServitors().size() + (pet != null ? 1 : 0)); // Summon size, one only atm
|
||||
if (pet != null)
|
||||
|
Loading…
Reference in New Issue
Block a user