From 36a28cca3ac69be884e9287130b583f9cec92742 Mon Sep 17 00:00:00 2001 From: RecursivePineapple Date: Tue, 3 Sep 2024 13:31:18 -0400 Subject: fixed getGlassBlock2 returning glass 1 (#3026) Co-authored-by: Martin Robertz --- src/main/java/bartworks/API/BorosilicateGlass.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/bartworks/API') diff --git a/src/main/java/bartworks/API/BorosilicateGlass.java b/src/main/java/bartworks/API/BorosilicateGlass.java index cc61ec1337..b33f43689f 100644 --- a/src/main/java/bartworks/API/BorosilicateGlass.java +++ b/src/main/java/bartworks/API/BorosilicateGlass.java @@ -50,7 +50,7 @@ public class BorosilicateGlass { } public static Block getGlassBlock2() { - return ItemRegistry.bw_realglas; + return ItemRegistry.bw_realglas2; } private static void doRegister(byte level, Block block, int meta, -- cgit