Fixes issue with cable crafting, #betaBuild

This commit is contained in:
modmuss50 2017-06-22 20:27:05 +01:00
parent 06abf4e413
commit 138de281f4
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
2 changed files with 2 additions and 1 deletions

View file

@ -81,7 +81,7 @@ configurations {
compile.extendsFrom shade compile.extendsFrom shade
} }
version = "2.4.3" version = "2.4.4"
def ENV = System.getenv() def ENV = System.getenv()
if (ENV.BUILD_NUMBER) { if (ENV.BUILD_NUMBER) {

View file

@ -36,6 +36,7 @@ public class ItemBlockCable extends ItemBlock {
public ItemBlockCable(Block block) { public ItemBlockCable(Block block) {
super(block); super(block);
setHasSubtypes(true);
} }
public int getMetadata(int damage) { public int getMetadata(int damage) {