mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Fixed quest loading
This commit is contained in:
@@ -1436,7 +1436,7 @@ namespace Meteor.Map.Actors
|
||||
|
||||
playerWork.questScenario[freeSlot] = instance.Id;
|
||||
questScenario[freeSlot] = instance;
|
||||
Database.SaveQuest(this, questScenario[freeSlot]);
|
||||
Database.SaveQuest(this, questScenario[freeSlot], freeSlot);
|
||||
SendQuestClientUpdate(freeSlot);
|
||||
|
||||
if (!isSilent)
|
||||
@@ -1458,7 +1458,7 @@ namespace Meteor.Map.Actors
|
||||
{
|
||||
questScenario[i] = newQuestInstance;
|
||||
playerWork.questScenario[i] = questScenario[i].Id;
|
||||
Database.SaveQuest(this, questScenario[i]);
|
||||
Database.SaveQuest(this, questScenario[i], i);
|
||||
SendQuestClientUpdate(i);
|
||||
break;
|
||||
}
|
||||
@@ -1557,7 +1557,7 @@ namespace Meteor.Map.Actors
|
||||
if (activeQuest == null)
|
||||
questStateManager.ForceAddActiveQuest(questScenario[freeSlot]);
|
||||
|
||||
Database.SaveQuest(this, questScenario[freeSlot]);
|
||||
Database.SaveQuest(this, questScenario[freeSlot], freeSlot);
|
||||
SendQuestClientUpdate(freeSlot);
|
||||
|
||||
if (!isSilent)
|
||||
|
@@ -161,7 +161,7 @@ namespace Meteor.Map.Actors.QuestNS
|
||||
|
||||
public void Save()
|
||||
{
|
||||
Database.SaveQuest(owner, parent);
|
||||
Database.UpdateQuest(owner, parent);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user