mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-08-25 02:13:32 +02:00
Add equip ability functions
Fix EquipAbility SQL query
This commit is contained in:
parent
247b5ca709
commit
efdec5e472
239 changed files with 3474 additions and 1086 deletions
|
@ -169,10 +169,10 @@ namespace FFXIVClassic_World_Server
|
|||
{
|
||||
uint sessionId = subpacket.header.targetId;
|
||||
Session session = GetSession(sessionId);
|
||||
|
||||
subpacket.DebugPrintSubPacket();
|
||||
if (subpacket.gameMessage.opcode >= 0x1000)
|
||||
{
|
||||
subpacket.DebugPrintSubPacket();
|
||||
//subpacket.DebugPrintSubPacket();
|
||||
|
||||
switch (subpacket.gameMessage.opcode)
|
||||
{
|
||||
|
@ -337,7 +337,7 @@ namespace FFXIVClassic_World_Server
|
|||
else if (mZoneSessionList.ContainsKey(sessionId))
|
||||
{
|
||||
ClientConnection conn = mZoneSessionList[sessionId].clientConnection;
|
||||
conn.QueuePacket(subpacket, true, false);
|
||||
conn.QueuePacket(subpacket);
|
||||
conn.FlushQueuedSendPackets();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue