将基础升级选项数量调整为三选一

This commit is contained in:
2026-04-25 14:15:36 +08:00
parent 2635d96280
commit d2fe89d34f
2 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1012,7 +1012,7 @@ static void FillUpgradeOptions()
}
}
int optionLimit = (rogueStats.destinyWheelLevel > 0) ? 5 : 4;
int optionLimit = (rogueStats.destinyWheelLevel > 0) ? 5 : 3;
int optionCount = selectableCount < optionLimit ? selectableCount : optionLimit;
upgradeUiState.optionCount = optionCount;
upgradeUiState.selectedIndex = 0;