mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Little fixes
This commit is contained in:
parent
ca521751cd
commit
fb4065ba66
7 changed files with 14 additions and 16 deletions
|
|
@ -1591,9 +1591,9 @@ public class VerifyCardDataTest {
|
|||
}
|
||||
|
||||
boolean isFine = true;
|
||||
for (int i = 0; i <= cardRules.length - 1; i++) {
|
||||
for (int i = 0; i < cardRules.length; i++) {
|
||||
boolean isAbilityFounded = false;
|
||||
for (int j = 0; j <= refRules.length - 1; j++) {
|
||||
for (int j = 0; j < refRules.length; j++) {
|
||||
String refRule = refRules[j];
|
||||
if (compareText(cardRules[i], refRule, card.getName())) {
|
||||
cardRules[i] = "+ " + cardRules[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue