Skip to content

Commit

Permalink
fix a Layer comparison in Liege of the Tangle
Browse files Browse the repository at this point in the history
  • Loading branch information
ingmargoudt committed Apr 25, 2021
1 parent 01b797f commit 49981ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/l/LiegeOfTheTangle.java
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public LiegeOfTheTangleEffect copy() {
public boolean hasLayer(Layer layer) {
return layer == Layer.PTChangingEffects_7
|| layer == Layer.ColorChangingEffects_5
|| layer == layer.TypeChangingEffects_4;
|| layer == Layer.TypeChangingEffects_4;
}

}
Expand Down

0 comments on commit 49981ba

Please sign in to comment.