Skip to content

Commit

Permalink
misc: 暂时禁用ByRangeExecutor
Browse files Browse the repository at this point in the history
  • Loading branch information
MATRIX-feather committed Feb 1, 2025
1 parent 4171d4b commit c91e570
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public static class InteractionMirrorSelectionMode

public static List<String> values()
{
return List.of(BY_NAME, BY_SIGHT, BY_RANGE);
return List.of(BY_NAME, BY_SIGHT /*, BY_RANGE */);
}

public static List<String> valuesLowerCase()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public ExecutorHub()
{
registerExecutor(InteractionMirrorProcessor.InteractionMirrorSelectionMode.BY_NAME, new ByNameExecutor(this));
registerExecutor(InteractionMirrorProcessor.InteractionMirrorSelectionMode.BY_SIGHT, new BySightExecutor(this));
registerExecutor(InteractionMirrorProcessor.InteractionMirrorSelectionMode.BY_RANGE, new ByRangeExecutor(this));
//registerExecutor(InteractionMirrorProcessor.InteractionMirrorSelectionMode.BY_RANGE, new ByRangeExecutor(this));
}

public final Bindable<Boolean> logOperations = new Bindable<>(false);
Expand Down

0 comments on commit c91e570

Please sign in to comment.