Returns the last known zone information for the card. If the card is a LKI copy of another card, then it stores the relevant information in savedLastKnownZone, which is returned. If the card is not a LKI copy (e.g. an ordinary card in the game), it does not have this information and then the last kn
()
| 7701 | * @return last known zone of the card (either LKI, if present, or the current zone). |
| 7702 | */ |
| 7703 | public final Zone getLastKnownZone() { |
| 7704 | return this.savedLastKnownZone != null ? this.savedLastKnownZone : getZone(); |
| 7705 | } |
| 7706 | |
| 7707 | /** |
| 7708 | * Sets the last known zone information for the card. Should only be used by LKI copies of cards |
no test coverage detected