Core/DataStores: Removed overriding field sign type based on db2 column compression
Port From (https://github.com/TrinityCore/TrinityCore/commit/89f490bdcdf88c2576c17218926e89b1082ae682)
This commit is contained in:
@@ -201,7 +201,7 @@ namespace Game.Networking.Packets
|
||||
public TraitCombatConfigFlags CombatConfigFlags;
|
||||
public int LocalIdentifier; // Local to specialization
|
||||
public uint SkillLineID;
|
||||
public int TraitSystemID;
|
||||
public uint TraitSystemID;
|
||||
public List<TraitEntryPacket> Entries = new();
|
||||
public List<TraitSubTreeCachePacket> SubTrees = new();
|
||||
public string Name = "";
|
||||
@@ -242,7 +242,7 @@ namespace Game.Networking.Packets
|
||||
SkillLineID = data.ReadUInt32();
|
||||
break;
|
||||
case TraitConfigType.Generic:
|
||||
TraitSystemID = data.ReadInt32();
|
||||
TraitSystemID = data.ReadUInt32();
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@@ -285,7 +285,7 @@ namespace Game.Networking.Packets
|
||||
data.WriteUInt32(SkillLineID);
|
||||
break;
|
||||
case TraitConfigType.Generic:
|
||||
data.WriteInt32(TraitSystemID);
|
||||
data.WriteUInt32(TraitSystemID);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user