meteor-client
meteor-client copied to clipboard
Item command for managing item highlight / auto drop / anti drop
Type of change
- [ ] Bug fix
- [x] New feature
Description
This adds a new command, .item, which helps to manage some item lists in certain modules, in a way more intuitive than using .setting.
The command syntax is as follows:
# Highlight
.item highlight - Adds currently held item to ItemHighlight module's items.
.item highlight <item> - Adds <item> to ItemHighlight module's items.
.item highlight clear - Removes currently held item from ItemHighlight module's items.
.item highlight clear * - Removes all from ItemHighlight module's items.
.item highlight clear <item> - Removes <item> from ItemHighlight module's items.
# Block
.item block - Adds currently held item to InventoryTweaks module's auto-drop items.
.item block <item> - Adds <item> to InventoryTweaks module's auto-drop items.
.item block clear - Removes currently held item from InventoryTweaks module's auto-drop items.
.item block clear * - Removes all from InventoryTweaks module's auto-drop items.
.item block clear <item> - Removes <item> from InventoryTweaks module's auto-drop items.
# Lock
.item lock - Adds currently held item to InventoryTweaks module's anti-drop items.
.item lock <item> - Adds <item> to InventoryTweaks module's anti-drop items.
.item lock clear - Removes currently held item from InventoryTweaks module's anti-drop items.
.item lock clear * - Removes all from InventoryTweaks module's anti-drop items.
.item lock clear <item> - Removes <item> from InventoryTweaks module's anti-drop items.
i feel like .item x clear removing the held item is a bit unintuitive, i would expect it to completely wipe the list (same with .item x clear <item>
i think that .item x clear should be changed to .item x remove and .item x clear * should be changed to just .item x clear
Yeah ok that works.