Skip to content

Commit

Permalink
Fix deepslate slab output
Browse files Browse the repository at this point in the history
Not sure how this one got changed to 4 but I am 110% sure this was 6 before.
  • Loading branch information
Roadhog360 committed Sep 25, 2023
1 parent 7338733 commit 4780d07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/ganymedes01/etfuturum/core/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public static MovingObjectPosition forwardsRaycast(Entity p_188802_0_, boolean p
return raytraceresult;
}

public static final void rotateTowardsMovement(Entity p_188803_0_, float p_188803_1_) {
public static void rotateTowardsMovement(Entity p_188803_0_, float p_188803_1_) {
double d0 = p_188803_0_.motionX;
double d1 = p_188803_0_.motionY;
double d2 = p_188803_0_.motionZ;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/ganymedes01/etfuturum/recipes/ModRecipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -584,8 +584,8 @@ ore_dyes[dye], new ItemStack(Blocks.sand, 1, 0), new ItemStack(Blocks.sand, 1, 0
addShapedRecipe(ModBlocks.DEEPSLATE_TILE_STAIRS.newItemStack(4), "x ", "xx ", "xxx", 'x', ModBlocks.DEEPSLATE_BRICKS.newItemStack(1, 2));
addShapedRecipe(ModBlocks.DEEPSLATE_SLAB.newItemStack(6), "xxx", 'x', ModBlocks.COBBLED_DEEPSLATE.newItemStack());
addShapedRecipe(ModBlocks.DEEPSLATE_SLAB.newItemStack(6, 1), "xxx", 'x', ModBlocks.POLISHED_DEEPSLATE.newItemStack());
addShapedRecipe(ModBlocks.DEEPSLATE_BRICK_SLAB.newItemStack(4), "xxx", 'x', ModBlocks.DEEPSLATE_BRICKS.newItemStack());
addShapedRecipe(ModBlocks.DEEPSLATE_BRICK_SLAB.newItemStack(4, 1), "xxx", 'x', ModBlocks.DEEPSLATE_BRICKS.newItemStack(1, 2));
addShapedRecipe(ModBlocks.DEEPSLATE_BRICK_SLAB.newItemStack(6), "xxx", 'x', ModBlocks.DEEPSLATE_BRICKS.newItemStack());
addShapedRecipe(ModBlocks.DEEPSLATE_BRICK_SLAB.newItemStack(6, 1), "xxx", 'x', ModBlocks.DEEPSLATE_BRICKS.newItemStack(1, 2));
addShapedRecipe(ModBlocks.DEEPSLATE_WALL.newItemStack(6), "xxx", "xxx", 'x', ModBlocks.COBBLED_DEEPSLATE.newItemStack());
addShapedRecipe(ModBlocks.DEEPSLATE_WALL.newItemStack(6, 1), "xxx", "xxx", 'x', ModBlocks.POLISHED_DEEPSLATE.newItemStack());
addShapedRecipe(ModBlocks.DEEPSLATE_BRICK_WALL.newItemStack(6), "xxx", "xxx", 'x', ModBlocks.DEEPSLATE_BRICKS.newItemStack());
Expand Down

1 comment on commit 4780d07

@Roadhog360
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes part of #335

Please sign in to comment.