Added missing opcodes.

This commit is contained in:
Filip Maj 2016-12-21 20:04:33 -05:00
parent 16c9b741bf
commit 506bcbaf87
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ namespace FFXIVClassic_Map_Server.packets.WorldPackets.Send.Group
{
class CreateLinkshellPacket
{
public const ushort OPCODE = 0x1000;
public const ushort OPCODE = 0x1025;
public const uint PACKET_SIZE = 0x48;
public static SubPacket BuildPacket(Session session, string name, ushort crest, uint master)

View File

@ -8,7 +8,7 @@ namespace FFXIVClassic_Map_Server.packets.WorldPackets.Send.Group
{
class DeleteLinkshellPacket
{
public const ushort OPCODE = 0x1000;
public const ushort OPCODE = 0x1027;
public const uint PACKET_SIZE = 0x40;
public static SubPacket BuildPacket(Session session, string name)

View File

@ -8,7 +8,7 @@ namespace FFXIVClassic_Map_Server.packets.WorldPackets.Send.Group
{
class ModifyLinkshellPacket
{
public const ushort OPCODE = 0x1000;
public const ushort OPCODE = 0x1026;
public const uint PACKET_SIZE = 0x60;
public static SubPacket BuildPacket(Session session, ushort changeArg, string name, string newName, ushort crest, uint master)