Fixed emotes, they all work now.

This commit is contained in:
Filip Maj
2017-06-15 00:05:14 -04:00
parent cdfa2f682e
commit 0e8de966a9
3 changed files with 69 additions and 9 deletions

View File

@@ -771,9 +771,9 @@ namespace FFXIVClassic_Map_Server.Actors
return mountState;
}
public void DoEmote(uint emoteId)
public void DoEmote(uint animId, uint descId)
{
BroadcastPacket(ActorDoEmotePacket.BuildPacket(actorId, actorId, currentTarget, emoteId), true);
BroadcastPacket(ActorDoEmotePacket.BuildPacket(actorId, actorId, currentTarget, animId, descId), true);
}
public void SendGameMessage(Actor sourceActor, Actor textIdOwner, ushort textId, byte log, params object[] msgParams)