mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Fixed one more instance of using .equals() instead of == in conjunction with getAPI()
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user