1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-02 08:57:44 +00:00

Fix for quests being added on decline

This commit is contained in:
Mordred 2022-01-16 22:22:27 +01:00
parent 3eb5fbf6fa
commit b9032f551e

View file

@ -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 );
}