Modscraper Modscraper Minecraft
Shulkers In Bundles logo

Shulkers In Bundles

Mod

Making bundles a little bit more convenient and useful by allowing to put shulkers in them

Type

Mod

Modrinth Downloads

2,931

Modrinth ID

RNNaLlJO

Last Updated

Jul 29, 2026

Description

Titlecard

Description

Shulkers In Bundles is a small but multi-loader and always up-to-date QoL mod that makes bundles just a tiny bit more useful late-game by allowing to put up to 16 shulkers in a single bundle.

Drawbacks

To prevent infinite storage in a single slot, using the mod to perhaps chunk-ban people, or even just overloading servers or your own singleplayer worlds, the mod disables some things.

  • You can no longer put Bundles in Shulkers
    • Except if they're empty
  • You can no longer put Bundles in Bundles
    • Except if they're empty

Open API

For a little bit of customization without us struggling to create configs for each loader for so many versions, Shulkers In Bundles exposes a supported API which you can mixin into and change how many shulkers you want to be able to put in a single bundle.

package xyz.yourmod.mixin; //doesn't matter what your package is named import net.justmili.shulkersinbundles.data.ShulkerFractions; import org.apache.commons.lang3.math.Fraction; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; @Mixin(ShulkerFractions.class) public class ShulkerWeightMixin { @Inject(method = "getShulkerWeight", at = @At("HEAD"), cancellable = true) private static void modifyShulkerWeight(CallbackInfoReturnable<Fraction> cir) { cir.setReturnValue(Fraction.getFraction(1, 8)); // ^^^ The 2nd number is how many shulkers will fit. // (To be exact, this for example is 1/8th of the bundle per shulker, so 8 shulkers will fit.) // Minimum is 1, maximum is 64. } }

Having issues, need to report a bug or just want to chat? Join our official community Discord server!

Compatibility

Mod Loaders

Fabric Forge Neoforge Quilt

Game Versions

1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 +47 more

Recommended Gear

Affiliate

Hardware and extras that pair well with this mod.

As an Amazon Associate I earn from qualifying purchases.

Similar Mods

Included in Modpacks (1)

External Resources