Skip to content

Commit

Permalink
fix: Crash when hoppers interact with any Inventory that is not a Chi…
Browse files Browse the repository at this point in the history
…seled Bookshelf
  • Loading branch information
2No2Name committed Jul 30, 2024
1 parent c1351d9 commit 409a5e1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package me.jellysquid.mods.lithium.mixin.block.hopper;

import me.jellysquid.mods.lithium.api.inventory.LithiumCooldownReceivingInventory;
import me.jellysquid.mods.lithium.api.inventory.LithiumTransferConditionInventory;
import net.minecraft.inventory.Inventory;
import org.spongepowered.asm.mixin.Mixin;

@Mixin(Inventory.class)
public interface InventoryMixin extends LithiumCooldownReceivingInventory {
public interface InventoryMixin extends LithiumCooldownReceivingInventory, LithiumTransferConditionInventory {
}

0 comments on commit 409a5e1

Please sign in to comment.