Fixed up message packet and set dream packets.

This commit is contained in:
Filip Maj 2015-12-30 12:20:47 -05:00
parent 01d32d4d15
commit d60938346b
2 changed files with 3 additions and 7 deletions

View file

@ -14,6 +14,7 @@ namespace FFXIVClassic_Map_Server.packets.send.player
public static SubPacket buildPacket(uint playerActorID, uint dreamID)
{
dreamID += 0x20E;
return new SubPacket(OPCODE, playerActorID, playerActorID, BitConverter.GetBytes((uint)dreamID));
}
}