From b9032f551ecd2409affe1c02bb927a5e5ada3d09 Mon Sep 17 00:00:00 2001 From: Mordred Date: Sun, 16 Jan 2022 22:22:27 +0100 Subject: [PATCH] Fix for quests being added on decline --- src/world/Actor/PlayerQuest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/Actor/PlayerQuest.cpp b/src/world/Actor/PlayerQuest.cpp index b0be4541..c0409141 100644 --- a/src/world/Actor/PlayerQuest.cpp +++ b/src/world/Actor/PlayerQuest.cpp @@ -90,7 +90,7 @@ void Sapphire::Entity::Player::updateQuest( const World::Quest& quest ) m_quests[ index ] = quest; questMgr.onUpdateQuest( *this, index ); } - else + else if( quest.getSeq() != 0 ) addQuest( quest ); }