Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix 10035 & 10036 #10040

Merged
merged 1 commit into from
Jul 15, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_items": {
"conditions": {
"items": [
{
"items": [
"structurize:sceptergold"
]
},
{
"items": [
"minecraft:smoker"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "minecolonies:blockhutkitchen"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_items",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"minecolonies:blockhutkitchen"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"key": {
"B": {
"item": "minecraft:smoker"
},
"T": {
"item": "structurize:sceptergold"
},
"X": {
"tag": "minecraft:planks"
}
},
"pattern": [
"XTX",
"XBX",
"XXX"
],
"result": {
"item": "minecolonies:blockhutkitchen"
},
"show_notification": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ private void buildHutRecipes(@NotNull final Consumer<FinishedRecipe> consumer)
registerHutRecipe1(consumer, ModBlocks.blockHutWareHouse, Tags.Items.CHESTS);
registerHutRecipe1(consumer, ModBlocks.blockHutNetherWorker, Items.OBSIDIAN);
registerHutRecipe1(consumer, ModBlocks.blockHutAlchemist, Items.BREWING_STAND);
registerHutRecipe1(consumer, ModBlocks.blockHutKitchen, Items.SMOKER);

ShapedRecipeBuilder.shaped(RecipeCategory.MISC, ModBlocks.blockHutCrusher)
.pattern("XTX")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1645,6 +1645,7 @@
"com.minecolonies.coremod.jei.stonesmeltery": "Smelts various kinds of stone and terracotta.",
"com.minecolonies.coremod.jei.swineherder": "Just happy with pigs in mud.",
"com.minecolonies.coremod.jei.netherworker": "Makes periodic trips to the nether to retrieve materials, but it's a very dangerous job, and requires significant supplies.",
"com.minecolonies.coremod.jei.chef": "Cooks custom food on demand",

"com.minecolonies.coremod.journeymap.deathpoint_name": "Death: %s",
"com.minecolonies.coremod.journeymap.deathpoint_namejob": "Death: %s - %s",
Expand Down