mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Companion name was off by 1.
This commit is contained in:
parent
a615f29e63
commit
b69e18ff3c
@ -86,7 +86,7 @@ namespace FFXIVClassic_Map_Server.packets.send.player
|
|||||||
binWriter.Write((Byte)sNpcSkin);
|
binWriter.Write((Byte)sNpcSkin);
|
||||||
binWriter.Write((Byte)sNpcPersonality);
|
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));
|
binWriter.Write(Encoding.ASCII.GetBytes(sNpcName), 0, Encoding.ASCII.GetByteCount(sNpcName) >= 0x20 ? 0x20 : Encoding.ASCII.GetByteCount(sNpcName));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user