✨New
Ender Chest Item Limiter
Block selected items from being stored inside ender chests.
Overview
This feature uses the same item-matching model as Item Limiter, but the restriction applies specifically to ender chest storage. It supports:
- Basic material matching
- Custom model data matching
- Display name matching
- Potion type matching
If a blocked item is moved into an ender chest, the move is cancelled.
Configuration
features:
ender-chest-item-limiter:
enabled: false
notify-player: true
notify-message: "<red>[Vanilla Core] <gray>You cannot put <yellow>{item}<gray> in an ender chest"
blocked-items:
TOTEM_OF_UNDYING:
material: TOTEM_OF_UNDYING
custom_token:
material: PAPER
customModelData: 4501
displayName: "§6Server Token"
SPLASH_POTION_STRONG_STRENGTH:
material: SPLASH_POTION
potionType: STRONG_STRENGTH
Configuration Options
| Option | Type | Default | Description |
|---|---|---|---|
enabled | boolean | false | Master toggle for ender chest restrictions |
notify-player | boolean | true | Whether players should be notified when a blocked insert is denied |
notify-message | string | (see above) | Message shown when a blocked item is prevented |
blocked-items | map | {} | Map of blocked item match definitions |
Message Placeholders
| Placeholder | Replaced With |
|---|---|
{item} | The blocked item name |
Message Keys
This feature uses the following messages.yml keys:
ender-chest-item-limiter.feature-disabledender-chest-item-limiter.messages.item-blockedender-chest-item-limiter.messages.please-set-itemender-chest-item-limiter.messages.item-selectedender-chest-item-limiter.messages.item-removedender-chest-item-limiter.messages.blocked-item-removed
GUI labels/titles are under:
ender-chest-item-limiter.gui.main.*ender-chest-item-limiter.gui.view.*ender-chest-item-limiter.gui.add.*ender-chest-item-limiter.gui.shared.*
Using the GUI
- Run
/smpto open the main menu - Find Ender Chest Item Limiter
- Left Click to toggle the feature
- Right Click to open the manager GUI
Add a Blocked Item
- Open Ender Chest Item Limiter manager
- Click Add Blocked Item
- Drag the target item into the item slot
- Click Confirm
Remove a Blocked Item
- Open View Blocked Items
- Shift + Left Click an entry to remove it from the blocklist
What Is Blocked
The feature blocks insertion attempts into ender chest slots, including:
- Cursor placement (left/right click)
- Shift-click from player inventory into ender chest
- Number-key hotbar swap into ender chest
- Drag operations that target ender chest slots
Notes
- To bypass restrictions for specific staff or roles, grant
smp.enderchestlimiter.bypass. - Matching is exact for custom item fields. If you include
displayNameorcustomModelData, only items with that exact metadata match.