Fixed sbytes not processing correctly for work updates. Added a sync all function to guildleves.

This commit is contained in:
Filip Maj 2017-06-24 17:14:18 -04:00
parent 8fb4910320
commit c78fa033af
3 changed files with 46 additions and 0 deletions

View file

@ -159,6 +159,8 @@ namespace FFXIVClassic_Map_Server.packets.send.actor
return AddByte(id, (byte)(((bool)curObj) ? 1 : 0));
else if (curObj is byte)
return AddByte(id, (byte)curObj);
else if (curObj is sbyte)
return AddByte(id, (byte)(sbyte)curObj);
else if (curObj is ushort)
return AddShort(id, (ushort)curObj);
else if (curObj is short)