Fixed DB2 loading and world login!!!!!

This commit is contained in:
hondacrx
2018-12-14 18:43:35 -05:00
parent 8e20114e10
commit f414068883
44 changed files with 779 additions and 852 deletions
+2 -3
View File
@@ -71,9 +71,8 @@ namespace Game.Network.Packets
public override void Read()
{
uint count = _worldPacket.ReadBits<uint>(6);
for (uint i = 0; i < count; ++i)
Talents.Add(_worldPacket.ReadUInt16());
for (int i = 0; i < count; ++i)
Talents[i] = _worldPacket.ReadUInt16();
}
public Array<ushort> Talents = new Array<ushort>(PlayerConst.MaxTalentTiers);