HyronicHyronic Mcmmo Docs

custom_item_support.yml

Whether mcMMO lets Repair and Salvage act on items that carry custom model data (modded/custom items).

custom_item_support.yml is a general switch for letting mcMMO interact with custom items. Right now support keys off whether an item has custom model data: you can independently allow or block Repair and Salvage on such items.

KeyEffect
Repair.Allow_Repair_On_Items_With_Custom_Model_DataPermit Repair on custom-model items
Salvage.Allow_Salvage_On_Items_With_Custom_Model_DataPermit Salvage on custom-model items

Default custom_item_support.yml

Full default file shipped with mcMMO 2.2.054:

# This is meant to be a general config for allowing mcMMO to allow interaction with custom items.
# In the future, I would like to add configs to be specific about certain custom items.
# For now, support is generalized to whether the custom item has a custom model.
# This is an easy solution to implement for now, but not the most ideal.
Custom_Item_Support:
    Repair:
        # Turn this off to disable repair on any items with custom model data
        Allow_Repair_On_Items_With_Custom_Model_Data: true
    Salvage:
        # Turn this off to disable salvage on any items with custom model data
        Allow_Salvage_On_Items_With_Custom_Model_Data: true

On this page