aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities/machines
diff options
context:
space:
mode:
authorRIONDY 'POPlol333' Adam <76914762+POPlol333@users.noreply.github.com>2022-08-24 12:37:48 +0200
committerGitHub <noreply@github.com>2022-08-24 12:37:48 +0200
commitde6fdf76ac015b739acbcf54150b7dde775e7a0c (patch)
treeccc95dadb8b15d39d79d459510d68d3ce7628df2 /src/main/java/gregtech/common/tileentities/machines
parente50e167023cb87b0e85f4eb1c1fbec2817d76114 (diff)
downloadGT5-Unofficial-de6fdf76ac015b739acbcf54150b7dde775e7a0c.tar.gz
GT5-Unofficial-de6fdf76ac015b739acbcf54150b7dde775e7a0c.tar.bz2
GT5-Unofficial-de6fdf76ac015b739acbcf54150b7dde775e7a0c.zip
add all bw glass and warded glass (#1293)
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_AssemblyLine.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_AssemblyLine.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_AssemblyLine.java
index 09b30d2a34..06d8725f45 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_AssemblyLine.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_AssemblyLine.java
@@ -71,7 +71,11 @@ public class GT_MetaTileEntity_AssemblyLine extends GT_MetaTileEntity_EnhancedMu
.addElement('G', ofBlock(GregTech_API.sBlockCasings3, 10)) // grate machine casing
.addElement('l', ofBlock(GregTech_API.sBlockCasings2, 9)) // assembler machine casing
.addElement('m', ofBlock(GregTech_API.sBlockCasings2, 5)) // assembling line casing
- .addElement('g', ofBlockUnlocalizedName("IC2", "blockAlloyGlass", 0, true))
+ .addElement('g', ofChain(
+ ofBlockUnlocalizedName("bartworks", "BW_GlasBlocks", 0, true),
+ ofBlockUnlocalizedName("Thaumcraft", "blockCosmeticOpaque", 2, false), //warded glass
+ ofBlockUnlocalizedName("IC2", "blockAlloyGlass", 0, true))
+ )
.addElement('e', ofChain(
Energy.newAny(16, 1),
ofBlock(GregTech_API.sBlockCasings2, 0)