1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-22 12:47:46 +00:00

Companion name was off by 1.

This commit is contained in:
Filip Maj 2016-03-28 21:52:02 -04:00
parent a615f29e63
commit b69e18ff3c

View file

@ -86,7 +86,7 @@ namespace FFXIVClassic_Map_Server.packets.send.player
binWriter.Write((Byte)sNpcSkin);
binWriter.Write((Byte)sNpcPersonality);
binWriter.Seek(0x108, SeekOrigin.Begin);
binWriter.Seek(0x109, SeekOrigin.Begin);
binWriter.Write(Encoding.ASCII.GetBytes(sNpcName), 0, Encoding.ASCII.GetByteCount(sNpcName) >= 0x20 ? 0x20 : Encoding.ASCII.GetByteCount(sNpcName));
}
}