mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-23 19:10:28 +02:00
Fixed pushCommand load bug. Set all Aetherytes to wrong command id; fixed.
This commit is contained in:
parent
c961ccd5bf
commit
b9c0084080
3 changed files with 50 additions and 44 deletions
|
@ -267,7 +267,7 @@ namespace FFXIVClassic_Map_Server
|
|||
|
||||
string query = @"
|
||||
SELECT
|
||||
id,
|
||||
gamedata_actor_class.id,
|
||||
classPath,
|
||||
displayNameId,
|
||||
propertyFlags,
|
||||
|
|
|
@ -238,8 +238,14 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
}
|
||||
|
||||
propPacketUtil.AddProperty("npcWork.hateType");
|
||||
propPacketUtil.AddProperty("npcWork.pushCommand");
|
||||
propPacketUtil.AddProperty("npcWork.pushCommandPriority");
|
||||
|
||||
if (npcWork.pushCommand != 0)
|
||||
{
|
||||
propPacketUtil.AddProperty("npcWork.pushCommand");
|
||||
if (npcWork.pushCommandSub != 0)
|
||||
propPacketUtil.AddProperty("npcWork.pushCommandSub");
|
||||
propPacketUtil.AddProperty("npcWork.pushCommandPriority");
|
||||
}
|
||||
|
||||
return BasePacket.CreatePacket(propPacketUtil.Done(), true, false);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue