* Fixed a recently added bug of AttacksIfAbleAllEffect (e.g. causing Goblin Rabblemaster to not working correctly).

This commit is contained in:
LevelX2 2015-01-18 09:22:24 +01:00
parent d5c1f35aca
commit 75d7ae2a6e
3 changed files with 5 additions and 4 deletions

View file

@ -51,12 +51,12 @@ public class AttacksIfAbleAllEffect extends RequirementEffect {
@Override
public boolean mustAttack(Game game) {
return false;
return true;
}
@Override
public boolean mustBlock(Game game) {
return true;
return false;
}
}