fixed gorsia rune calculations

This commit is contained in:
tmont 2021-02-25 12:49:51 -08:00
parent 549f393539
commit 2536015a18

View File

@ -326,15 +326,15 @@
if (shouldApplyRunes) {
rowData.guard /= 2;
rowData.power /= 2;
rowData.speed /= 2;
rowData.speed -= 50;
rowData.hp /= 2;
rowData.magic /= 2;
rowData.magic -= 50;
} else {
rowData.guard *= 2;
rowData.power *= 2;
rowData.speed *= 2;
rowData.speed += 50;
rowData.hp *= 2;
rowData.magic *= 2;
rowData.magic += 50;
}
refreshModal();