This commit is contained in:
Kyle
2020-02-23 16:55:24 -08:00
parent aeec1857d8
commit 0f75f0f64c
2 changed files with 8 additions and 8 deletions

View File

@@ -35,7 +35,7 @@
if (abilityType.includes("+")) {
//plus
plusAbilities[plusAbilities.length] = abilityText
} else if (abilityType.includes("\u2212") && n == planeswalkerAbilityList.length - 1 && n > 1) {
} else if (abilityType.includes("\u2212") && n == planeswalkerAbilityList.length - 1 && n > 1 && parseInt(abilityType.replace("\u2212", "")) > 4) {
//ult
ultimateAbilities[ultimateAbilities.length] = abilityText
} else if (abilityType.includes("\u2212") || abilityType == "0") {

File diff suppressed because one or more lines are too long