Bug fix on broadcast packet method, filled out what 0x144 does.

This commit is contained in:
Filip Maj
2017-05-16 23:43:07 -04:00
parent 08b3564d7e
commit 5d65965ec0
6 changed files with 23 additions and 7 deletions
+1 -1
View File
@@ -355,7 +355,7 @@ namespace FFXIVClassic_Map_Server.Actors
if (isIsolated && packet.header.sourceId != a.actorId)
continue;
SubPacket clonedPacket = new SubPacket(packet, actor.actorId);
SubPacket clonedPacket = new SubPacket(packet, a.actorId);
Player p = (Player)a;
p.QueuePacket(clonedPacket);
}