1
0

Added 1.12 blocks (#3760)

This commit is contained in:
Bond-009
2017-06-30 10:46:58 +02:00
committed by Mattes D
parent 33527067ed
commit 7fd3899796
10 changed files with 441 additions and 9 deletions

View File

@@ -83,15 +83,19 @@ bool cSandSimulator::IsAllowedBlock(BLOCKTYPE a_BlockType)
{
switch (a_BlockType)
{
case E_BLOCK_SAND:
case E_BLOCK_GRAVEL:
case E_BLOCK_ANVIL:
case E_BLOCK_CONCRETE_POWDER:
case E_BLOCK_DRAGON_EGG:
case E_BLOCK_GRAVEL:
case E_BLOCK_SAND:
{
return true;
}
default:
{
return false;
}
}
return false;
}