Skip to content

Commit

Permalink
fix: change plate recipe to avoid conflict
Browse files Browse the repository at this point in the history
plates are now crafted by smelting smooth stone
  • Loading branch information
MrTJP committed Jul 5, 2021
1 parent c48805b commit 4dffcb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/generated/data/projectred-core/recipes/plate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"count": 2
},
"ingredient": {
"tag": "forge:stone"
"item": "minecraft:smooth_stone"
},
"experience": 0.0,
"cookingtime": 200
Expand Down
3 changes: 2 additions & 1 deletion src/core/scala/mrtjp/projectred/core/content.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import codechicken.microblock.handler.MicroblockModContent
import codechicken.microblock.{EdgeMicroFactory, FaceMicroFactory, ItemMicroBlock, MicroMaterialRegistry}
import mrtjp.projectred.ProjectRedCore.MOD_ID
import mrtjp.projectred.core.CoreContent._
import net.minecraft.block.Blocks
import net.minecraft.data._
import net.minecraft.item.{Item, ItemStack, Items}
import net.minecraft.tags.ItemTags
Expand Down Expand Up @@ -346,7 +347,7 @@ private class Recipes(gen: DataGenerator) extends RecipeProvider(gen) {

override protected def registerRecipes() {
smelting(itemPlate, 2)
.ingredient(STONE)
.ingredient(Blocks.SMOOTH_STONE)

smelting(itemSiliconBoule)
.ingredient(itemSandCoalCompound)
Expand Down

0 comments on commit 4dffcb0

Please sign in to comment.