Wiki

Clone wiki

Loot Overhaul / Loot Conditions - Not

Loot Conditions - Not

Structure:

Property Type Description
conditions Condition Object List List of conditions to negate.

Description:

Will pass if all its conditions are false

Example Usage: (only applies if not in a deep ocean biome)

"conditions": [
    {
        "condition": "lootoverhaul:not",
        "conditions": [
            {
                "condition": "lootoverhaul:in_biome",
                "biomes": [
                    "minecraft:deep_ocean"
                ]
            }
        ]
    }
]

Previous - Near Block Back Next - And

Updated