Skip to content

Commit

Permalink
fix render bug
Browse files Browse the repository at this point in the history
  • Loading branch information
KELETU66666 committed Mar 14, 2024
1 parent f58d3cf commit 27cfba6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.EnumDyeColor;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.Ingredient;
import net.minecraft.item.crafting.ShapelessRecipes;
Expand Down Expand Up @@ -145,8 +146,8 @@ private static void registerCarpenterRecipes() {
"sws", "aca", "sws",
'w', "blockWool",
's', "string",
'c', Blocks.CHEST,
'f', "gemAmber"
'c', Item.getItemFromBlock(Blocks.CHEST),
'a', "gemAmber"
);
RecipeManagers.carpenterManager.addRecipe(200, new FluidStack(FluidRegistry.WATER, 1000), ItemStack.EMPTY, new ItemStack(thaumaturgeBackpackT2),
"WXW", "WTW", "WWW",
Expand Down

0 comments on commit 27cfba6

Please sign in to comment.