Fixed some stuff with pine tree growth requirements and slabs

This commit is contained in:
Matt Caughey 2013-08-14 20:04:13 -04:00
parent 9c9b9b5593
commit 8f74d1b334
2 changed files with 2 additions and 2 deletions

View file

@ -111,7 +111,7 @@ public class BlockBOPSlab extends BlockHalfSlab
@Override
public int damageDropped(int meta)
{
return meta;
return meta & 7;
}
@Override

View file

@ -19,7 +19,7 @@ public class WorldGenPineTree extends WorldGenerator
int var6 = var1.getBlockId(var3, var4, var5);
if (var6 != Block.grass.blockID && var6 != Blocks.hardDirt.get().blockID && var6 != Block.stone.blockID)
if (var6 != Block.grass.blockID && var6 != Blocks.hardDirt.get().blockID && var6 != Block.stone.blockID && var6 != Block.dirt.blockID)
return false;
else
{