Sponge drop fix
This commit is contained in:
parent
d58ca85e4c
commit
113aab6d24
7 changed files with 46 additions and 13 deletions
|
@ -12,6 +12,7 @@ import ru.betterend.item.GuideBook;
|
|||
import ru.betterend.recipe.builders.GridRecipe;
|
||||
import ru.betterend.registry.EndBlocks;
|
||||
import ru.betterend.registry.EndItems;
|
||||
import ru.betterend.registry.EndTags;
|
||||
|
||||
public class CraftingRecipes {
|
||||
|
||||
|
@ -166,6 +167,18 @@ public class CraftingRecipes {
|
|||
.addMaterial('S', EndItems.ETERNAL_CRYSTAL)
|
||||
.addMaterial('A', EndBlocks.AMBER_BLOCK)
|
||||
.build();
|
||||
|
||||
GridRecipe.make("hopper", Blocks.HOPPER)
|
||||
.setShape("I I", "ICI", " I ")
|
||||
.addMaterial('I', Items.IRON_INGOT)
|
||||
.addMaterial('C', EndTags.ITEM_CHEST)
|
||||
.build();;
|
||||
|
||||
GridRecipe.make("shulker_box", Blocks.SHULKER_BOX)
|
||||
.setShape("S", "C", "S")
|
||||
.addMaterial('S', Items.SHULKER_SHELL)
|
||||
.addMaterial('C', EndTags.ITEM_CHEST)
|
||||
.build();
|
||||
}
|
||||
|
||||
private static void registerLantern(String name, Block lantern, Block slab) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue