-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable several settings by default that are affected by `@Intrinsic` Injection issue
- Loading branch information
Showing
16 changed files
with
69 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...main/java/net/caffeinemc/mods/lithium/mixin/entity/inactive_navigations/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 1 addition & 4 deletions
5
common/src/main/java/net/caffeinemc/mods/lithium/mixin/math/sine_lut/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,4 @@ | ||
@MixinConfigOption( | ||
description = "Reduces the sine table size to reduce memory usage and increase access speed. Broken in 1.21.2 and 1.21.3.", | ||
enabled = false | ||
) | ||
@MixinConfigOption(description = "Reduces the sine table size to reduce memory usage and increase access speed") | ||
package net.caffeinemc.mods.lithium.mixin.math.sine_lut; | ||
|
||
import net.caffeinemc.gradle.MixinConfigOption; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...nemc/mods/lithium/mixin/minimal_nonvanilla/world/expiring_chunk_tickets/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
@MixinConfigOption(description = "Only check positions with expiring tickets during ticket expiration." + | ||
" Can cause reordering of chunks unloading. The chunk unloading order in vanilla is predictable, but depends" + | ||
" on the hash of the chunk position of the tickets and the hashes of the other chunk tickets, and the order" + | ||
" of creation of the chunk tickets when hash collisions occur. No known contraptions depend on the unload order.") | ||
" of creation of the chunk tickets when hash collisions occur. No known contraptions depend on the unload order.", | ||
enabled = false // TODO fix injection failure on fabric outside dev env | ||
) | ||
package net.caffeinemc.mods.lithium.mixin.minimal_nonvanilla.world.expiring_chunk_tickets; | ||
import net.caffeinemc.gradle.MixinConfigOption; |
4 changes: 3 additions & 1 deletion
4
...c/main/java/net/caffeinemc/mods/lithium/mixin/shapes/lazy_shape_context/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
@MixinConfigOption(description = "Entity shape contexts initialize rarely used fields only on first use") | ||
@MixinConfigOption(description = "Entity shape contexts initialize rarely used fields only on first use", | ||
enabled = false //TODO fix Intrinsic issue then re-enable | ||
) | ||
package net.caffeinemc.mods.lithium.mixin.shapes.lazy_shape_context; | ||
|
||
import net.caffeinemc.gradle.MixinConfigOption; |
4 changes: 3 additions & 1 deletion
4
.../java/net/caffeinemc/mods/lithium/mixin/util/inventory_change_listening/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
@MixinConfigOption(description = "Certain BlockEntity Inventories emit updates to their listeners when their stack list is changed or the inventory becomes invalid") | ||
@MixinConfigOption(description = "Certain BlockEntity Inventories emit updates to their listeners when their stack list is changed or the inventory becomes invalid", | ||
enabled = false //TODO fix Intrinsic issue then re-enable | ||
) | ||
package net.caffeinemc.mods.lithium.mixin.util.inventory_change_listening; | ||
|
||
import net.caffeinemc.gradle.MixinConfigOption; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...mc/mods/lithium/mixin/world/block_entity_ticking/sleeping/brewing_stand/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
@MixinConfigOption(description = "BlockEntity sleeping for inactive brewing stands") | ||
@MixinConfigOption(description = "BlockEntity sleeping for inactive brewing stands", | ||
enabled = false //TODO fix Intrinsic issue then re-enable | ||
) | ||
package net.caffeinemc.mods.lithium.mixin.world.block_entity_ticking.sleeping.brewing_stand; | ||
|
||
import net.caffeinemc.gradle.MixinConfigOption; |
4 changes: 3 additions & 1 deletion
4
...ffeinemc/mods/lithium/mixin/world/block_entity_ticking/sleeping/furnace/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
@MixinConfigOption(description = "BlockEntity sleeping for inactive furnaces") | ||
@MixinConfigOption(description = "BlockEntity sleeping for inactive furnaces", | ||
enabled = false //TODO fix Intrinsic issue then re-enable | ||
) | ||
package net.caffeinemc.mods.lithium.mixin.world.block_entity_ticking.sleeping.furnace; | ||
|
||
import net.caffeinemc.gradle.MixinConfigOption; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters