mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-07-22 02:47:12 +00:00
Merge 5c4f5111f8 into 09df8928ee
This commit is contained in:
commit
bf511b891d
|
|
@ -24,6 +24,11 @@ ChestTile::~ChestTile()
|
||||||
delete random;
|
delete random;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ChestTile::updateDefaultShape()
|
||||||
|
{
|
||||||
|
setShape(1 / 16.0f, 0, 1 / 16.0f, 15 / 16.0f, 14 / 16.0f, 15 / 16.0f);
|
||||||
|
}
|
||||||
|
|
||||||
bool ChestTile::isSolidRender(bool isServerLevel)
|
bool ChestTile::isSolidRender(bool isServerLevel)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
|
|
@ -57,4 +57,5 @@ public:
|
||||||
virtual bool hasAnalogOutputSignal();
|
virtual bool hasAnalogOutputSignal();
|
||||||
virtual int getAnalogOutputSignal(Level *level, int x, int y, int z, int dir);
|
virtual int getAnalogOutputSignal(Level *level, int x, int y, int z, int dir);
|
||||||
virtual void registerIcons(IconRegister *iconRegister);
|
virtual void registerIcons(IconRegister *iconRegister);
|
||||||
|
void updateDefaultShape() override;
|
||||||
};
|
};
|
||||||
Loading…
Reference in a new issue