1
0

Further attempt at fixing torch placements

Also fixed block on flower placement. #71
This commit is contained in:
Tiger Wang 2013-08-11 11:58:57 +01:00
parent deeb3a15dc
commit baae26ab22
2 changed files with 10 additions and 10 deletions

View File

@ -32,7 +32,7 @@ public:
virtual bool DoesAllowBlockOnTop(void) override virtual bool DoesAllowBlockOnTop(void) override
{ {
return false; return true;
} }

View File

@ -111,17 +111,17 @@ public:
{ {
switch (a_BlockType) switch (a_BlockType)
{ {
case E_BLOCK_GLASS: //case E_BLOCK_GLASS:
case E_BLOCK_FENCE: //case E_BLOCK_FENCE:
case E_BLOCK_NETHER_BRICK_FENCE: //case E_BLOCK_NETHER_BRICK_FENCE:
case E_BLOCK_PISTON: //case E_BLOCK_PISTON:
case E_BLOCK_WORKBENCH: //case E_BLOCK_IRON_BARS
{ if ( g_BlockIsSolid[a_BlockType] {
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];
} }
} }