Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- Updated the Flay Mind recipe display in EMI and JEI to cycle through all valid entities if the input is an entity tag ([#1023](https://github.com/FallingColors/HexMod/pull/1023)) @YukkuriC
- Re-implemented the ability to extract stored media from items in trinket/curio slots ([#996](https://github.com/FallingColors/HexMod/pull/996)) @YukkuriC
- Patterns involving entity look direction now compensate for the vanilla bug that causes projectiles and phantoms to report the wrong direction ([#1025](https://github.com/FallingColors/HexMod/pull/1025)) @Robotgiggle
- Edified Panels are now crafted with 9 planks rather than 8 to avoid conflicting with the vanilla chest recipe ([#1080](https://github.com/FallingColors/HexMod/pull/1080)) @Robotgiggle
- Updated Inline dependency from 1.0.1 to 1.2.2 ([#1043](https://github.com/FallingColors/HexMod/pull/1043)) @Robotgiggle
- Updated Fabric Language Kotlin dependency from 1.9.4 to 1.13.7 ([#1043](https://github.com/FallingColors/HexMod/pull/1043)) @Robotgiggle
- Updated Kotlin for Forge dependency from 4.3.0 to 4.12.0 ([#1043](https://github.com/FallingColors/HexMod/pull/1043)) @Robotgiggle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,11 @@ public void buildRecipes(Consumer<FinishedRecipe> recipes) {
.unlockedBy("has_item", hasItem(log)).save(recipes);
}

ring(RecipeCategory.BUILDING_BLOCKS, HexBlocks.EDIFIED_PANEL, 8,
HexTags.Items.EDIFIED_PLANKS, null)
ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, HexBlocks.EDIFIED_PANEL, 9)
.define('W', HexTags.Items.EDIFIED_PLANKS)
.pattern("WWW")
.pattern("WWW")
.pattern("WWW")
.unlockedBy("has_item", hasItem(HexTags.Items.EDIFIED_PLANKS)).save(recipes);

ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, HexBlocks.EDIFIED_TILE, 6)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"C": {
"tag": "hexcasting:edified_planks"
},
"D": {
"W": {
"tag": "hexcasting:edified_planks"
}
},
"pattern": [
"DCD",
"C C",
"DCD"
"WWW",
"WWW",
"WWW"
],
"result": {
"count": 8,
"count": 9,
"item": "hexcasting:edified_panel"
},
"show_notification": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"C": {
"tag": "hexcasting:edified_planks"
},
"D": {
"W": {
"tag": "hexcasting:edified_planks"
}
},
"pattern": [
"DCD",
"C C",
"DCD"
"WWW",
"WWW",
"WWW"
],
"result": {
"count": 8,
"count": 9,
"item": "hexcasting:edified_panel"
},
"show_notification": true
Expand Down
Loading