Core/PacketIO: Name part of the unknown 9.x spline packet block

Port From (https://github.com/TrinityCore/TrinityCore/commit/763a35df106fa5fb5f02a6db8bb123bb7323ce35)
This commit is contained in:
hondacrx
2022-11-11 19:58:53 -05:00
parent abab879bd8
commit a8e2b6f88b
@@ -1354,8 +1354,7 @@ namespace Game.Networking.Packets
foreach (var unkInner in Data)
{
data.WriteInt32(unkInner.Unknown_1);
data.WriteInt32(unkInner.Unknown_2);
data.WriteInt32(unkInner.Unknown_3);
unkInner.Visual.Write(data);
data.WriteUInt32(unkInner.Unknown_4);
}
}
@@ -1363,8 +1362,7 @@ namespace Game.Networking.Packets
public struct Inner
{
public int Unknown_1;
public int Unknown_2;
public int Unknown_3;
public SpellCastVisual Visual;
public uint Unknown_4;
}
}