mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-05 16:02:20 +02:00
Fix Hp Stat Translation
This commit is contained in:
parent
c5cc4445c4
commit
e39b790ac7
@ -674,9 +674,7 @@ export default class SummaryUiHandler extends UiHandler {
|
||||
const stats = Utils.getEnumValues(Stat) as Stat[];
|
||||
|
||||
stats.forEach((stat, s) => {
|
||||
const statName = stat !== Stat.HP
|
||||
? getStatName(stat)
|
||||
: 'HP';
|
||||
const statName = getStatName(stat);
|
||||
const rowIndex = s % 3;
|
||||
const colIndex = Math.floor(s / 3);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user