Skip to content

Commit

Permalink
Fix modifier entry matching wrongly
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMiner committed Apr 19, 2022
1 parent 4c9763a commit b3cc745
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public boolean matches(ModifierId id) {

/** Checks if this entry matches the given modifier */
public boolean matches(Modifier modifier) {
return modifier.getId().equals(modifier.getId());
return matches(modifier.getId());
}

@Override
Expand Down

0 comments on commit b3cc745

Please sign in to comment.