1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-12 01:01:04 -09:00

Minor formatting.

This commit is contained in:
LevelX2 2013-08-28 08:36:04 +02:00
parent 0f31cd9f12
commit 257aae3800
2 changed files with 7 additions and 3 deletions
Mage/src/mage/abilities/keyword
Utils/release

View file

@ -51,10 +51,12 @@ class IntimidateEffect extends RestrictionEffect<IntimidateEffect> implements Ma
@Override
public boolean canBeBlocked(Permanent attacker, Permanent blocker, Ability source, Game game) {
boolean result = false;
if (blocker.getCardType().contains(CardType.ARTIFACT) && (blocker.getCardType().contains(CardType.CREATURE)))
if (blocker.getCardType().contains(CardType.ARTIFACT) && (blocker.getCardType().contains(CardType.CREATURE))) {
result = true;
if (attacker.getColor().shares(blocker.getColor()))
}
if (attacker.getColor().shares(blocker.getColor())) {
result = true;
}
return result;
}
@ -62,4 +64,4 @@ class IntimidateEffect extends RestrictionEffect<IntimidateEffect> implements Ma
public IntimidateEffect copy() {
return new IntimidateEffect(this);
}
}
}

View file

@ -11,6 +11,8 @@ git log 9ac166abc92f70aebdbe34825880ff8f909465ed..HEAD --diff-filter=A --name-st
since 1.0.2-release:
git log 6b38cd5b18298b07962b969bfa2eb69c62839575..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
since 1.0.3-release:
git log 7ba3d451da95183b8c1cfb732b332f640963cc4a..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
3. Copy added_cards.txt to trunk\Utils folder
4. Run script: