Skip to content

Commit 421cd0f

Browse files
authored
Increase priority on inventory mixin to prevent clashing with IU (#3765)
1 parent 8d55484 commit 421cd0f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/com/gregtechceu/gtceu/core/mixins/InventoryMixin.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
import org.spongepowered.asm.mixin.Mixin;
1111
import org.spongepowered.asm.mixin.injection.At;
1212

13-
@Mixin(Inventory.class)
13+
// Priority increased to override Industrial Upgrade, see gtm#3763
14+
@Mixin(value = Inventory.class, priority = 1200)
1415
public abstract class InventoryMixin {
1516

1617
@WrapOperation(method = { "findSlotMatchingUnusedItem", "findSlotMatchingItem" },

0 commit comments

Comments
 (0)