AngleWyrm / Colonies

Minecraft mod MineColony Reboot
7 stars 8 forks source link

Default chest can be seen and built when in Creative mode #36

Closed AngleWyrm closed 11 years ago

AngleWyrm commented 11 years ago

there's a problem with the render function depending on a global instance of the default chest.

AngleWyrm commented 11 years ago

This is related to #33

stabtokill commented 11 years ago

can you do this?...

In BlockColoniesChest.class, take out this:

setCreativeTab(CreativeTabs.tabDecorations);

And then put it in each block class, like (in BlockTownHall.class) EX:

public BlockTownHall(int id) {
    super(id);
    setBlockName("block.townhall");
    setCreativeTab(CreativeTabs.tabDecorations);
}
AngleWyrm commented 11 years ago

Yes, good solution