Fixes #481 and Fixes empty cell texture

This commit is contained in:
modmuss50 2016-05-25 17:23:19 +01:00
parent e01e4be209
commit f39a047f49
2 changed files with 3 additions and 4 deletions

View file

@ -10,6 +10,7 @@ public class EmptyCell extends ItemTextureBase {
public EmptyCell()
{
super();
setUnlocalizedName("techreborn.cell");
setCreativeTab(TechRebornCreativeTab.instance);
}
@ -20,6 +21,6 @@ public class EmptyCell extends ItemTextureBase {
@Override
public int getMaxMeta() {
return 0;
return 1;
}
}