mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 22:14:39 +02:00
Fixed sbytes not processing correctly for work updates. Added a sync all function to guildleves.
This commit is contained in:
parent
8fb4910320
commit
c78fa033af
3 changed files with 46 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue