commit
1599d607d1
|
@ -32,7 +32,7 @@ public:
|
||||||
|
|
||||||
virtual bool DoesAllowBlockOnTop(void) override
|
virtual bool DoesAllowBlockOnTop(void) override
|
||||||
{
|
{
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -109,21 +109,18 @@ public:
|
||||||
|
|
||||||
static bool CanBePlacedOn(BLOCKTYPE a_BlockType, char a_Direction)
|
static bool CanBePlacedOn(BLOCKTYPE a_BlockType, char a_Direction)
|
||||||
{
|
{
|
||||||
switch (a_BlockType)
|
//case E_BLOCK_GLASS:
|
||||||
{
|
//case E_BLOCK_FENCE:
|
||||||
case E_BLOCK_GLASS:
|
//case E_BLOCK_NETHER_BRICK_FENCE:
|
||||||
case E_BLOCK_FENCE:
|
//case E_BLOCK_PISTON:
|
||||||
case E_BLOCK_NETHER_BRICK_FENCE:
|
//case E_BLOCK_IRON_BARS
|
||||||
case E_BLOCK_PISTON:
|
if ( g_BlockIsSolid[a_BlockType] ) {
|
||||||
case E_BLOCK_WORKBENCH:
|
return (a_Direction == 0x1); // allow only direction "standing on floor"
|
||||||
{
|
}
|
||||||
return (a_Direction == 0x1); // allow only direction "standing on floor"
|
else {
|
||||||
}
|
//default:
|
||||||
|
//{
|
||||||
default:
|
return g_BlockIsSolid[a_BlockType];
|
||||||
{
|
|
||||||
return g_BlockIsSolid[a_BlockType];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -207,7 +207,7 @@ void cComposableGenerator::InitBiomeGen(cIniFile & a_IniFile)
|
||||||
);
|
);
|
||||||
CacheSize = 4;
|
CacheSize = 4;
|
||||||
}
|
}
|
||||||
LOGINFO("Using a cache for biomegen of size %d.", CacheSize);
|
LOGD("Using a cache for biomegen of size %d.", CacheSize);
|
||||||
m_UnderlyingBiomeGen = m_BiomeGen;
|
m_UnderlyingBiomeGen = m_BiomeGen;
|
||||||
m_BiomeGen = new cBioGenCache(m_UnderlyingBiomeGen, CacheSize);
|
m_BiomeGen = new cBioGenCache(m_UnderlyingBiomeGen, CacheSize);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue