Survivalist icon indicating copy to clipboard operation
Survivalist copied to clipboard

[1.15] Stone config options don't work, can't edit it with datapacks either

Open mosharky opened this issue 4 years ago • 0 comments

Here's the Andesite block's .json file from data/minecraft/loot_tables/blocks:

{
  "type": "minecraft:block",
  "pools": [
    {
      "rolls": 1,
      "entries": [
        {
          "type": "minecraft:alternatives",
          "children": [
            {
              "type": "minecraft:item",
              "conditions": [
                {
                  "condition": "minecraft:match_tool",
                  "predicate": {
                    "enchantments": [
                      {
                        "enchantment": "minecraft:silk_touch",
                        "levels": {
                          "min": 1
                        }
                      }
                    ]
                  }
                }
              ],
              "name": "minecraft:andesite"
            },
            {
              "type": "minecraft:item",
              "functions": [
                {
                  "function": "minecraft:set_count",
                  "count": {
                    "min": 1.0,
                    "max": 1.0,
                    "type": "minecraft:uniform"
                  }
                },
                {
                  "function": "minecraft:apply_bonus",
                  "enchantment": "minecraft:fortune",
                  "formula": "minecraft:uniform_bonus_count",
                  "parameters": {
                    "bonusMultiplier": 1
                  }
                },
                {
                  "function": "minecraft:limit_count",
                  "limit": {
                    "max": 1,
                    "min": 1
                  }
                },
                {
                  "function": "minecraft:explosion_decay"
                }
              ],
              "name": "minecraft:andesite"
            }
          ]
        }
      ]
    }
  ]
}

I don't really know what I'm doing wrong here.

mosharky avatar Apr 09 '20 05:04 mosharky