neoforged / NeoForge

Neo Modding API for Minecraft, based on Forge
https://projects.neoforged.net/neoforged/neoforge
Other
1.21k stars 177 forks source link

[Suggestion] Add Missing Blaze Powder to the `c:dusts` tag #1257

Open ffuentesm opened 3 months ago

ffuentesm commented 3 months ago

Compared to the previous version, the Blaze Dust is missing from the Dust Tag list.

Just add this file to the src/generated/resources/data/c/tags/item/dusts

{
  "values": [
    "minecraft:blaze_powder"
  ]
}

As well as change the dusts.json file in src/generated/resources/data/c/tags/item/

{
  "values": [
    "#c:dusts/glowstone",
    "#c:dusts/redstone",
    "#c:dusts/blaze",
    {
      "id": "#forge:dusts",
      "required": false
    }
  ]
}
TelepathicGrunt commented 3 months ago

I'm on the fence about this one. I would like to hear from more people on this. Does it make sense to have in the tag? And it won't interfere with people currently consuming the dust tag right?

ApexModder commented 3 months ago

I agree that blaze_powder should be added to the dusts tag, its the dust variant of blaze and tbh most mods already treat it as such from what ive seen.

Pulverizers/Crushers crush blaze into blaze_powder (vanilla also does this via shapless crafting)

TelepathicGrunt commented 3 months ago

From fabric post, someone said:

If blaze powder is a dust, then presumably gunpowder is a dust as well.