Fix Keys in Summary Menu

This commit is contained in:
xsn34kzx 2024-08-20 14:06:01 -04:00
parent 9acc654df2
commit a733155262

View File

@ -839,7 +839,7 @@ export default class SummaryUiHandler extends UiHandler {
pageContainer.add(statsContainer);
PERMANENT_STATS.forEach((stat, s) => {
const statName = getStatKey(stat);
const statName = i18next.t(getStatKey(stat));
const rowIndex = s % 3;
const colIndex = Math.floor(s / 3);