mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Fixed sbytes not processing correctly for work updates. Added a sync all function to guildleves.
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user