Fix MajorPriority stuffs

This commit is contained in:
Bluzume 2021-11-28 15:27:22 -05:00
parent 088a4948d7
commit c72d6f44ea

View file

@ -2548,13 +2548,14 @@ namespace HISP.Game
if (chatpoint.ActivateQuestId != 0)
{
Quest.QuestEntry quest = Quest.GetQuestById(chatpoint.ActivateQuestId);
user.MajorPriority = true;
Quest.QuestResult result = Quest.ActivateQuest(user, quest, true);
if (result.QuestCompleted)
{
user.MajorPriority = true;
if (result.SetChatpoint != -1)
Npc.SetDefaultChatpoint(user, npc, result.SetChatpoint);
if (result.GotoChatpoint != -1)
chatpoint = Npc.GetNpcChatpoint(npc, result.GotoChatpoint);
@ -2567,6 +2568,7 @@ namespace HISP.Game
{
if (result.GotoChatpoint != -1)
chatpoint = Npc.GetNpcChatpoint(npc, result.GotoChatpoint);
if (result.NpcChat != null)
chatpoint.ChatText = result.NpcChat;