Fix loading into world.

This commit is contained in:
hondacrx
2021-04-13 01:23:54 -04:00
parent b0e28e1478
commit 99350e6dc6
22 changed files with 78 additions and 171 deletions
+3 -3
View File
@@ -758,7 +758,7 @@ namespace Game.Networking.Packets
RequesterGuid = data.ReadPackedGuid();
Id = data.ReadUInt32();
Type = (RideType)data.ReadUInt32();
Time = data.ReadInt32();
Time = data.ReadInt64();
}
public void Write(WorldPacket data)
@@ -766,13 +766,13 @@ namespace Game.Networking.Packets
data.WritePackedGuid(RequesterGuid);
data.WriteUInt32(Id);
data.WriteUInt32((uint)Type);
data.WriteInt32(Time);
data.WriteInt64(Time);
}
public ObjectGuid RequesterGuid;
public uint Id;
public RideType Type;
public int Time;
public long Time;
}
public enum RideType