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
- 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
For blocked items:
config.yml
Code (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
shulkers/<specific shulker box>.yml:
Code (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
Maximum-carried-shulkers:
config.yml
Code (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