various text fixes

This commit is contained in:
xenohedron 2025-11-22 20:44:33 -05:00
parent 9c5e4b0698
commit 934d8e13f5
16 changed files with 25 additions and 24 deletions

View file

@ -2638,14 +2638,14 @@ public class VerifyCardDataTest {
if (mageObject.isCreature(game)) {
return "this creature";
}
if (mageObject.isLand(game)) {
return "this land";
}
for (SubType subType : selfRefNamedSubtypes) {
if (mageObject.hasSubtype(subType, game)) {
return "this " + subType.getDescription();
}
}
if (mageObject.isLand(game)) {
return "this land";
}
if (mageObject.isBattle(game)) {
return "this battle";
}