Skip to content

Commit

Permalink
Disable new optimizations with mod compat issues before release
Browse files Browse the repository at this point in the history
  • Loading branch information
2No2Name committed Jun 15, 2024
1 parent d7b442d commit 05b5264
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
" This deviates from vanilla in the case of placing a hopper in a powered location, immediately updating the" +
" cached BlockState (which is incorrect in vanilla). This most likely does not affect your gameplay, as this" +
" deviation only affects hoppers, and in vanilla, hoppers never use the cached state information anyway.",
depends = @MixinConfigDependency(dependencyPath = "mixin.world.block_entity_ticking")
depends = @MixinConfigDependency(dependencyPath = "mixin.world.block_entity_ticking"),
enabled = false //Lots of mod incompatibilities, TODO: analysis -> change the mixins or suggest changes to carpet & world edit
)
package me.jellysquid.mods.lithium.mixin.minimal_nonvanilla.world.block_entity_ticking.support_cache;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
@MixinConfigOption(description = "Caches entity explosion exposure to avoid duplicate calculations.")
@MixinConfigOption(
description = "Caches entity explosion exposure to avoid duplicate calculations.",
enabled = false // TODO mod incompatibility with carpet
)
package me.jellysquid.mods.lithium.mixin.world.explosions.cache_exposure;

import net.caffeinemc.gradle.MixinConfigOption;

0 comments on commit 05b5264

Please sign in to comment.