From e756ce4ec4b08a6346822622c18e609b96b89c5a Mon Sep 17 00:00:00 2001 From: David Markowitz Date: Fri, 3 Oct 2025 22:58:13 -0700 Subject: [PATCH] banana --- dGame/dMission/Mission.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dGame/dMission/Mission.cpp b/dGame/dMission/Mission.cpp index 331ece5c..93bf397d 100644 --- a/dGame/dMission/Mission.cpp +++ b/dGame/dMission/Mission.cpp @@ -460,7 +460,7 @@ void Mission::YieldRewards() { if (info.LegoScore > 0) { eLootSourceType lootSource = info.isMission ? eLootSourceType::MISSION : eLootSourceType::ACHIEVEMENT; if (levelComponent->GetLevel() >= Game::zoneManager->GetWorldConfig().levelCap) { - // If player is at the level cap and doesnt want to keep earning UScore at max level we convert it here. + // Since the character is at the level cap we reward them with coins instead of UScore. coinsToSend += info.LegoScore * Game::zoneManager->GetWorldConfig().levelCapCurrencyConversion; } else { characterComponent->SetUScore(characterComponent->GetUScore() + info.LegoScore);