Skip to content

Commit

Permalink
fix colored_light command not correct on fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
zomb-676 committed Aug 17, 2023
1 parent 995e65b commit 0924db3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public void onInitializeClient() {
.then(literal("colored_light")
.then(argument("switch_state", BoolArgumentType.bool()).executes(
context -> {
FabricShimmerConfig.CONFIG.BLOCK_BLOOM.set(context.getArgument("switch_state", Boolean.class));
FabricShimmerConfig.CONFIG.ENABLED_COLORED_LIGHT.set(context.getArgument("switch_state", Boolean.class));
return Command.SINGLE_SUCCESS;
}
)))
Expand Down

0 comments on commit 0924db3

Please sign in to comment.