Fuzss / easyshulkerboxes

Supercharge shulkes boxes, bundles and backpacks! Fully useable in your inventory with many intuitive interactions.
https://www.curseforge.com/minecraft/mc-mods/easy-shulker-boxes
Mozilla Public License 2.0
4 stars 3 forks source link

[Suggestion]: How do I disable bundle interaction? #55

Closed FaeWulf closed 1 month ago

FaeWulf commented 1 month ago

Mod Loader (Optional)

Fabric

Minecraft Version(s) (Optional)

1.21

Mod Version(s) (Optional)

No response

Suggestion (Required)

I am making a mod that adds more capacity for vanilla bundle,. when using with this mod it doesn't work as intend (this mod prevent adding more items than 64) Is there any way to work around this?

Fuzss commented 1 month ago

There is a provider type iteminteractions:empty that allows for disabling an existing provider.

So in your mod you can include this file with:

{
  "type": "iteminteractions:empty"
}

At least that's the idea, there might be an issue with mod data pack loading order, when your mod loads after mine it's likely not going to work.

FaeWulf commented 1 month ago

Thank you!