- Fixed one more instance of using .equals() instead of == in conjunction with getAPI()

This commit is contained in:
moomarc
2013-02-19 08:07:49 +00:00
parent 57ed7c9111
commit 0f55cf0377

View File

@@ -582,7 +582,7 @@ public final class CardUtil {
break;
}
if (ab.getApi().equals(ApiType.ManaReflected)) {
if (ab.getApi() == ApiType.ManaReflected) {
if (!parents.contains(ab.getSourceCard())) {
// Recursion!
reflectAbilities.add(ab);