[CMR] fixed Hellkite Courser - missing command zone support in target (#7198);

This commit is contained in:
Oleg Agafonov 2020-11-28 23:14:24 +04:00
parent 2b78388eab
commit c548b3fd1d
5 changed files with 82 additions and 7 deletions

View file

@ -47,6 +47,14 @@ public abstract class TargetObject extends TargetImpl {
return sb.toString().trim();
}
/**
* Warning, don't use with non card objects here like commanders/emblems/etc. If you want it then
* override canTarget in your own target.
*
* @param id
* @param game
* @return
*/
@Override
public boolean canTarget(UUID id, Game game) {
MageObject object = game.getObject(id);