Changes
- Updated the internal core system.
- Fixed an issue where shulker boxes without defined CustomModelData could cause console errors during saving.
- Added support for Minecraft 1.21.11.
- Fixed EnderChest behavior in this version.
- Added new configuration option:
- blocked-items-invert-logic: false
- When enabled, blocked-items works as a whitelist (only allowed items can be inserted into shulker boxes).
- Various minor internal code improvements and optimizations.
Changes:
- Fixed Folia error spam — Folia should now work properly as expected.
- Added a new premium feature: maximum-carried-shulker-boxes
This allows you to set a limit on how many shulker boxes players can carry in their inventory.- Forced updated dependency ChestSortAPI from 13.0.0 to 14.2.0
- Newest version of core
Please anywhere in config.yml add
YAML:# Maximum of carried shulker boxes in the inventory maximum-carried-shulker-boxes: enabled: false # THIS FEATURE IS AVAILABLE ONLY FOR PREMIUM USERS! block-when-exceeding: true # If true, players won’t be able to carry more than the allowed number of shulker boxes. If false, it will trigger actions instead. actions: exceeded: - "[CHAT] Hi, I was trying to carry more than max shulker boxes.. :(" - "[CONSOLE] effect give %player% minecraft:slowness 5 255 true" - "[CONSOLE] tellraw %player% {\"text\":\"You can't carry more than %max% shulker boxes!\",\"color\":\"red\"}" dropped: - "[CHAT] You have dropped your shulker boxes because you were carrying too many!" - "[CONSOLE] tellraw %player% {\"text\":\"You have dropped your shulker boxes because you were carrying too many!\",\"color\":\"red\"}" - "[CONSOLE] effect %player% minecraft:slowness 0" # Permission example: # eshulkerbox.maximum-carried-shulker-boxes.3 -> Allows carrying up to 3 shulker boxes
Changes:
- Core updated to the latest internal version for improved stability
- Custom blocked items: You can now define specific items that cannot be inserted into specific custom shulker box or all non custom shulker boxes.
- Menu updated to reflect the new restriction management and offer a more intuitive overview
config.yml
YAML:# Blocked items that cannot be placed in the normal ShulkerBoxes (not custom ones) #blocked-items: # - "BEDROCK" # Bedrock Material will be blocked # - "CustomModelData:24756" # All Items with CustomModelData 24756 will be blocked
specific shulker box yml:
YAML:# Blocked items that cannot be placed in the ShulkerBox #blocked-items: # - "BEDROCK" # Bedrock Material will be blocked # - "CustomModelData:24756" # All Items with CustomModelData 24756 will be blocked
Changes
Fixed Critical Duplication Bug – Resolved a major issue that could allow players to duplicate items under certain conditions.
Changes
- Recipe Error Fix – Fixed an issue where a misconfigured recipe could prevent a custom Shulker Box from loading properly.
- Recipe Button in Item Editor – Added the missing Recipe button to the item editor interface.
- ItemStack Support for Recipes – Internally reworked recipe logic to support full ItemStack definitions.
- Minor Code Improvements – Small structural changes to improve maintainability and performance.
Changes:
- Optimized Imports – Cleaned up and optimized import statements to slightly improve performance and reduce clutter.
- Permission Button Fixed in Editor – The permission button in the Shulker Editor is now fully functional.
- Folia Compatibility Fixes – Resolved potential errors related to running the plugin on Folia-based servers.
Changes:
- WorldGuard Region Support – Added a new config option disabled-regions that allows you to disable the plugin in specific WorldGuard regions. Simply list the region names to exclude (e.g., "spawn1").
- Disable Chat & Commands Inside Shulker Boxes – Introduced a new config option disable-chat-and-commands-in-shulkerbox.
When enabled, all player chat and commands are blocked while a Shulker Box is open.
This feature was added due to some players using custom Minecraft clients that allowed chatting or executing commands even while interacting with Shulker Boxes, which could lead to unintended exploits.
Changes
config.yml
- Data System Overhaul – Reworked the data storage system. All existing .yaml files are now automatically converted to .yml. The plugin now operates exclusively with .yml format for better consistency and compatibility.
- New Config Option: inventory-title-as-item-name – When enabled, the inventory title of a Shulker Box will match its custom item name (e.g., from an anvil rename). If disabled, the default title (e.g., "Shulker Box") will be shown.
- New Config Option: clickable-read-only-shulker-cross-others-plugin-inventories – Allows players to open read-only Shulker Boxes inside GUIs from other plugins (e.g., Auction GUIs).
Use with caution – this may cause compatibility issues with third-party plugins and is disabled by default.
- New Feature in Shulker Editor – Added a new button that allows setting a default content layout for Shulker Boxes.
YAML:# If enabled, the inventory title shown when opening a shulker box # will match the item's custom name (e.g., renamed using an anvil). # If disabled, the default title (e.g., "Shulker Box") will be used instead. inventory-title-as-item-name: true # Allows opening read-only Shulker Boxes inside other plugins' inventories (e.g., GUI menus like some Auctions plugins with gui). # When set to true, players can open read-only Shulker Boxes even when they are shown inside external plugin inventories. # ⚠️ Warning: Enabling this may cause compatibility issues or break GUI logic in some third-party plugins. # It is recommended to keep this set to false unless you fully understand the consequences. clickable-read-only-shulker-cross-others-plugin-inventories: false
