Skip to content

Commit

Permalink
Fix Region ClassInfo canParse impl
Browse files Browse the repository at this point in the history
Fixes #11
  • Loading branch information
APickledWalrus committed Jun 24, 2024
1 parent c7f43a5 commit c6539b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public RegionClasses() {

@Override
public boolean canParse(@NotNull ParseContext context) {
return true;
return context == ParseContext.EVENT || context == ParseContext.COMMAND;
}

@Override
Expand Down

0 comments on commit c6539b6

Please sign in to comment.