Fixed issue 212, created a getter for the copiedSpell member to use in the copied spells resolution of the rebound effect.

This commit is contained in:
maurer.it 2011-10-13 22:34:03 -04:00
parent 1e91dbe7e3
commit e0fb91f380
3 changed files with 27 additions and 96 deletions

View file

@ -436,5 +436,9 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
public void setCopiedSpell(boolean isCopied) {
this.copiedSpell = isCopied;
}
public boolean isCopiedSpell ( ) {
return this.copiedSpell;
}
}