fix additional test failures

This commit is contained in:
theelk801 2025-05-23 18:30:23 -04:00
parent 19bb4e7cd3
commit 501b7e882b
5 changed files with 45 additions and 40 deletions

View file

@ -250,6 +250,16 @@ public interface Card extends MageObject, Ownerable {
List<UUID> getAttachments();
/**
* @param attachment can be any object: card, permanent, token
* @param source can be null for default checks like state base
* @param game
* @param silentMode - use it to ignore warning message for users (e.g. for
* checking only)
* @return
*/
boolean cantBeAttachedBy(MageObject attachment, Ability source, Game game, boolean silentMode);
boolean addAttachment(UUID permanentId, Ability source, Game game);
boolean removeAttachment(UUID permanentId, Ability source, Game game);