- Creatures without a name can't have the same name as other creatures without a name (Bile Blight + Morph)

This commit is contained in:
Sol
2015-01-18 17:10:43 +00:00
parent d2108e26c0
commit 6f8d674cad

View File

@@ -3497,7 +3497,7 @@ public class Card extends GameEntity implements Comparable<Card> {
return false;
}
} else if (property.startsWith("sameName")) {
if (!getName().equals(source.getName())) {
if (getName().equals("") || !getName().equals(source.getName())) {
return false;
}
} else if (property.equals("NamedCard")) {