Core/Spells: implement SMSG_MOUNT_RESULT and use it for transformed mounting cases

Port From (https://github.com/TrinityCore/TrinityCore/commit/fb0d2ed2b96c314ea144b3524195ae96878e0079)
This commit is contained in:
hondacrx
2020-05-06 17:26:03 -04:00
parent 0c0198c483
commit cbc2597adb
3 changed files with 48 additions and 1 deletions
@@ -1107,6 +1107,18 @@ namespace Game.Network.Packets
uint LoadingScreenID;
}
class MountResultPacket : ServerPacket
{
public MountResult() : base(ServerOpcodes.MountResult, ConnectionType.Instance) { }
public override void Write()
{
_worldPacket.WriteUInt32(Result);
}
public uint Result;
}
//Structs
public struct SpellLogPowerData
{