()
| 6628 | } |
| 6629 | |
| 6630 | public final boolean isForetold() { |
| 6631 | // in exile and foretold |
| 6632 | if (this.isInZone(ZoneType.Exile)) { |
| 6633 | return this.foretold; |
| 6634 | } |
| 6635 | // cast as foretold, currently only spells |
| 6636 | if (this.getCastSA() != null) { |
| 6637 | return this.getCastSA().isForetold(); |
| 6638 | } |
| 6639 | return false; |
| 6640 | } |
| 6641 | public final void setForetold(final boolean foretold) { |
| 6642 | this.foretold = foretold; |
| 6643 | } |
no test coverage detected