GuideBook (WIP) fix
This commit is contained in:
parent
88afa6a2c9
commit
08e31b8743
8 changed files with 22 additions and 13 deletions
|
@ -7,10 +7,16 @@ import ru.betterend.registry.EndItems;
|
|||
public class SmithingRecipes {
|
||||
public static void register() {
|
||||
AnvilSmithingRecipe.Builder.create("ender_pearl_to_dust")
|
||||
.setInput(Items.ENDER_PEARL, EndItems.ENDER_SHARD)
|
||||
.setInput(Items.ENDER_PEARL)
|
||||
.setOutput(EndItems.ENDER_DUST, 1)
|
||||
.setLevel(4)
|
||||
.setDamage(5)
|
||||
.build();
|
||||
AnvilSmithingRecipe.Builder.create("ender_shard_to_dust")
|
||||
.setInput(EndItems.ENDER_SHARD)
|
||||
.setOutput(EndItems.ENDER_DUST, 1)
|
||||
.setLevel(2)
|
||||
.setDamage(3)
|
||||
.build();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue