Fixed quest tracking and who knows what else.

This commit is contained in:
hondacrx
2017-06-30 22:15:47 -04:00
parent fabf19c27f
commit b4a77d16c1
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -470,6 +470,7 @@ namespace Game.Misc
}
}
packet.Info.QuestID = quest.Id;
packet.Info.QuestType = (int)quest.Type;
packet.Info.QuestLevel = quest.Level;
packet.Info.QuestPackageID = quest.PackageID;
+1 -1
View File
@@ -6170,7 +6170,7 @@ namespace Game
// Load `quest_objectives`
// 0 1 2 3 4 5 6 7 8 9
result = DB.World.Query("SELECT ID, QuestID, Type, StorageIndex, ObjectID, Amount, Flags, Flags, ProgressBarWeight, Description FROM quest_objectives ORDER BY StorageIndex ASC");
result = DB.World.Query("SELECT ID, QuestID, Type, StorageIndex, ObjectID, Amount, Flags, Flags2, ProgressBarWeight, Description FROM quest_objectives ORDER BY StorageIndex ASC");
if (result.IsEmpty())
{