Implement a general way to store selection data for gossip and fix trainer exploit

This commit is contained in:
hondacrx
2017-08-15 10:42:52 -04:00
parent 000aa1d993
commit 8d113d506d
7 changed files with 48 additions and 13 deletions
+12
View File
@@ -1287,4 +1287,16 @@ namespace Game.Network.Packets
public override void Read() { }
}
class CloseInteraction : ClientPacket
{
public CloseInteraction(WorldPacket packet) : base(packet) { }
public override void Read()
{
SourceGuid = _worldPacket.ReadPackedGuid();
}
public ObjectGuid SourceGuid;
}
}