From 9d3b2d13351baf565ff0ee63767c1eaf6f66e04f Mon Sep 17 00:00:00 2001 From: "lapayo94@gmail.com" Date: Thu, 29 Dec 2011 22:55:25 +0000 Subject: - 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 --- source/cSandSimulator.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/cSandSimulator.cpp') diff --git a/source/cSandSimulator.cpp b/source/cSandSimulator.cpp index c27607f73..c0ed2309b 100644 --- a/source/cSandSimulator.cpp +++ b/source/cSandSimulator.cpp @@ -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; } -- cgit v1.2.3