1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-24 05:37:45 +00:00

Merge pull request #973 from arieshi255/fix-mapmgr

[3.x] Update map icons on quest completion
This commit is contained in:
Mordred 2025-01-17 23:31:27 +01:00 committed by GitHub
commit bf3368224a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -163,6 +163,8 @@ void Player::updateQuestsCompleted( uint32_t questId )
uint8_t value = 0x80 >> bitIndex; uint8_t value = 0x80 >> bitIndex;
m_questCompleteFlags[ index ] |= value; m_questCompleteFlags[ index ] |= value;
Common::Service< Manager::MapMgr >::ref().updateQuests( *this );
} }
bool Player::isQuestCompleted( uint32_t questId ) bool Player::isQuestCompleted( uint32_t questId )