diff options
author | Johannes Gäßler <updrn@student.kit.edu> | 2017-06-22 01:50:21 +0200 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2017-06-22 22:37:48 +0200 |
commit | 64f8282c03f20c44eebe128785c85c8820a7c253 (patch) | |
tree | fe343e530e24f66be05e97a886a34b5e4291132a /src/main/java/gregtech/common/blocks/GT_Item_Casings8.java | |
parent | c1a8464bab88cd7ab574dcc4ef823e06e317b151 (diff) | |
download | GT5-Unofficial-64f8282c03f20c44eebe128785c85c8820a7c253.tar.gz GT5-Unofficial-64f8282c03f20c44eebe128785c85c8820a7c253.tar.bz2 GT5-Unofficial-64f8282c03f20c44eebe128785c85c8820a7c253.zip |
cherry pick
14b9332d141ff652cf728ea16a7d44274f0e1bef
Moved the Casings for the Large Chemical Reactor again.
As it turns out overwriting Casings 4.4 and 4.5 was not a good idea
because even though there is no actual Casing at those IDs, the textures
are in use.
I started a new batch of Casings (GT_Block_Casings8) at IDs 112-127.
I did not use IDs 80-95 because there seem to already be some textures
there.
I did not use IDs 96-111 because they seem to already be in use by
Technus.
Diffstat (limited to 'src/main/java/gregtech/common/blocks/GT_Item_Casings8.java')
-rw-r--r-- | src/main/java/gregtech/common/blocks/GT_Item_Casings8.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/blocks/GT_Item_Casings8.java b/src/main/java/gregtech/common/blocks/GT_Item_Casings8.java new file mode 100644 index 0000000000..66498a0481 --- /dev/null +++ b/src/main/java/gregtech/common/blocks/GT_Item_Casings8.java @@ -0,0 +1,10 @@ +package gregtech.common.blocks;
+
+import net.minecraft.block.Block;
+
+public class GT_Item_Casings8
+ extends GT_Item_Casings_Abstract {
+ public GT_Item_Casings8(Block par1) {
+ super(par1);
+ }
+}
|