diff --git a/Game/Entities/Creature/Gossip.cs b/Game/Entities/Creature/Gossip.cs index f1581ff4e..518c1d2d1 100644 --- a/Game/Entities/Creature/Gossip.cs +++ b/Game/Entities/Creature/Gossip.cs @@ -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; diff --git a/Game/Globals/ObjectManager.cs b/Game/Globals/ObjectManager.cs index 7171cc350..c028cb99b 100644 --- a/Game/Globals/ObjectManager.cs +++ b/Game/Globals/ObjectManager.cs @@ -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()) {