1
0

- Animals burn now when moving into lava or fire

- Monster health is now working properly

git-svn-id: http://mc-server.googlecode.com/svn/trunk@157 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
lapayo94@gmail.com
2011-12-29 22:55:25 +00:00
parent d7adbba59d
commit 9d3b2d1335
3 changed files with 12 additions and 7 deletions

View File

@@ -72,7 +72,8 @@ bool cSandSimulator::IsPassable( char a_BlockID )
{
return a_BlockID == E_BLOCK_AIR
|| IsBlockWater(a_BlockID)
|| IsBlockLava(a_BlockID);
|| IsBlockLava(a_BlockID)
|| a_BlockID == E_BLOCK_FIRE;
}