mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-08 22:48:35 +00:00
uninitialized vptr
the vptr to isSolidRender() is not known before contruction of the Tile. Its true by default. if false, need to pass false. that is what i did. i verfied what isSolidRender() is in every file. and did exactly what isSolidRender() would return
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
#include "CakeTile.h"
|
||||
|
||||
|
||||
CakeTile::CakeTile(int id) : Tile(id, Material::cake,isSolidRender())
|
||||
CakeTile::CakeTile(int id) : Tile(id, Material::cake, false)
|
||||
{
|
||||
setTicking(true);
|
||||
|
||||
@@ -148,4 +148,4 @@ int CakeTile::getResource(int data, Random *random, int playerBonusLevel)
|
||||
int CakeTile::cloneTileId(Level *level, int x, int y, int z)
|
||||
{
|
||||
return Item::cake_Id;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user