* Game log - triggered abilities are now logged as they go to stack. Some minor formatting.

This commit is contained in:
LevelX2 2014-03-17 08:37:54 +01:00
parent 4232a3b7f1
commit 2f8ac76417
15 changed files with 338 additions and 183 deletions

View file

@ -399,6 +399,11 @@ public class StackAbility implements StackObject, Ability {
public void setAbilityWord(AbilityWord abilityWord) {
throw new UnsupportedOperationException("Not supported.");
}
@Override
public String getGameLogMessage(Game game) {
throw new UnsupportedOperationException("Not supported."); //To change body of generated methods, choose Tools | Templates.
}
}