This commit is contained in:
Kyle
2020-02-23 17:06:07 -08:00
parent 0f75f0f64c
commit fbe849564e
2 changed files with 2 additions and 2 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 && parseInt(abilityType.replace("\u2212", "")) > 4) {
} else if (abilityType.includes("\u2212") && 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