From 24765be2672d3bb50d49a59c6141ad6c19f22a5c Mon Sep 17 00:00:00 2001 From: quat1024 Date: Thu, 15 Jun 2023 23:13:19 -0400 Subject: [PATCH] Rotate the item model so it faces the same way as stairs But now the lighting looks kinda odd :thinking: --- src/main/java/io/github/cottonmc/templates/TemplatesClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/github/cottonmc/templates/TemplatesClient.java b/src/main/java/io/github/cottonmc/templates/TemplatesClient.java index b08b57f..aafa948 100644 --- a/src/main/java/io/github/cottonmc/templates/TemplatesClient.java +++ b/src/main/java/io/github/cottonmc/templates/TemplatesClient.java @@ -51,7 +51,7 @@ public class TemplatesClient implements ClientModInitializer { //block Templates.SLOPE, //the blockstate you'd like the item model to show - Templates.SLOPE.getDefaultState().with(SlopeBlock.FACING, Direction.SOUTH), + Templates.SLOPE.getDefaultState().with(SlopeBlock.FACING, Direction.EAST), //Function that creates your model SlopeUnbakedModel::new );