Skip to content

Commit 161cbe0

Browse files
committed
Update db2 reader lib version
1 parent fd599ac commit 161cbe0

152 files changed

Lines changed: 164 additions & 203 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion

WowPacketParser/DBC/DBC.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib;
1+
using DBCD.IO;
22
using System;
33
using System.Collections.Generic;
44
using System.Diagnostics;
@@ -96,7 +96,7 @@ await Task.WhenAll(typeof(DBC).GetProperties(BindingFlags.Static | BindingFlags.
9696

9797
try
9898
{
99-
var db2Reader = new DBReader($"{GetDBCPath(attr.FileName)}.db2");
99+
var db2Reader = new DBParser($"{GetDBCPath(attr.FileName)}.db2");
100100

101101
if (hotfixReader != null)
102102
hotfixReader.ApplyHotfixes(instance, db2Reader);

WowPacketParser/DBC/Structures/BattleForAzeroth/AchievementEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib.Attributes;
1+
using DBCD.IO.Attributes;
22

33
namespace WowPacketParser.DBC.Structures.BattleForAzeroth
44
{

WowPacketParser/DBC/Structures/BattleForAzeroth/AnimationDataEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib.Attributes;
1+
using DBCD.IO.Attributes;
22

33
namespace WowPacketParser.DBC.Structures.BattleForAzeroth
44
{

WowPacketParser/DBC/Structures/BattleForAzeroth/AreaTableEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib.Attributes;
1+
using DBCD.IO.Attributes;
22

33
namespace WowPacketParser.DBC.Structures.BattleForAzeroth
44
{

WowPacketParser/DBC/Structures/BattleForAzeroth/BroadcastTextDurationEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib.Attributes;
1+
using DBCD.IO.Attributes;
22

33
namespace WowPacketParser.DBC.Structures.BattleForAzeroth
44
{

WowPacketParser/DBC/Structures/BattleForAzeroth/BroadcastTextEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib.Attributes;
1+
using DBCD.IO.Attributes;
22

33
namespace WowPacketParser.DBC.Structures.BattleForAzeroth
44
{

WowPacketParser/DBC/Structures/BattleForAzeroth/ConversationLineEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib.Attributes;
1+
using DBCD.IO.Attributes;
22

33
namespace WowPacketParser.DBC.Structures.BattleForAzeroth
44
{

WowPacketParser/DBC/Structures/BattleForAzeroth/CreatureDifficultyEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib.Attributes;
1+
using DBCD.IO.Attributes;
22

33
namespace WowPacketParser.DBC.Structures.BattleForAzeroth
44
{

WowPacketParser/DBC/Structures/BattleForAzeroth/CreatureDisplayInfoEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using DBFileReaderLib.Attributes;
1+
using DBCD.IO.Attributes;
22

33
namespace WowPacketParser.DBC.Structures.BattleForAzeroth
44
{

0 commit comments

Comments
 (0)