Skip to content

Commit

Permalink
fix: enable updated world.chunk_ticking by default
Browse files Browse the repository at this point in the history
  • Loading branch information
2No2Name committed Dec 12, 2021
1 parent 981d4e8 commit bf3c69b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private LithiumConfig() {
this.addMixinRule("world.block_entity_ticking.support_cache", false); //have to check whether the cached state bugfix fixes any detectable vanilla bugs first
this.addMixinRule("world.chunk_access", true);
this.addMixinRule("world.chunk_tickets", true);
this.addMixinRule("world.chunk_ticking", false); //removed during 1.18 update
this.addMixinRule("world.chunk_ticking", true);
this.addMixinRule("world.explosions", true);
this.addMixinRule("world.inline_block_access", true);
this.addMixinRule("world.inline_height", true);
Expand Down

0 comments on commit bf3c69b

Please sign in to comment.