Merge pull request #12612 from LillyJadeKatrin/retroachievements-logout-bug
Don't Publish Unofficial Achievements
This commit is contained in:
commit
aba9b110e8
|
@ -1463,7 +1463,6 @@ void AchievementManager::HandleAchievementTriggeredEvent(const rc_runtime_event_
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
it->second.session_unlock_count++;
|
it->second.session_unlock_count++;
|
||||||
m_queue.EmplaceItem([this, event_id] { AwardAchievement(event_id); });
|
|
||||||
AchievementId game_data_index = it->second.game_data_index;
|
AchievementId game_data_index = it->second.game_data_index;
|
||||||
OSD::AddMessage(fmt::format("Unlocked: {} ({})", m_game_data.achievements[game_data_index].title,
|
OSD::AddMessage(fmt::format("Unlocked: {} ({})", m_game_data.achievements[game_data_index].title,
|
||||||
m_game_data.achievements[game_data_index].points),
|
m_game_data.achievements[game_data_index].points),
|
||||||
|
@ -1474,6 +1473,7 @@ void AchievementManager::HandleAchievementTriggeredEvent(const rc_runtime_event_
|
||||||
nullptr);
|
nullptr);
|
||||||
if (m_game_data.achievements[game_data_index].category == RC_ACHIEVEMENT_CATEGORY_CORE)
|
if (m_game_data.achievements[game_data_index].category == RC_ACHIEVEMENT_CATEGORY_CORE)
|
||||||
{
|
{
|
||||||
|
m_queue.EmplaceItem([this, event_id] { AwardAchievement(event_id); });
|
||||||
PointSpread spread = TallyScore();
|
PointSpread spread = TallyScore();
|
||||||
if (spread.hard_points == spread.total_points &&
|
if (spread.hard_points == spread.total_points &&
|
||||||
it->second.remote_unlock_status != UnlockStatus::UnlockType::HARDCORE)
|
it->second.remote_unlock_status != UnlockStatus::UnlockType::HARDCORE)
|
||||||
|
|
Loading…
Reference in New Issue