Turned a common assert into a warning log
git-svn-id: http://mc-server.googlecode.com/svn/trunk@794 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
parent
6ad8553a3a
commit
17253d2c90
@ -130,7 +130,7 @@ inline void AddDirection( int & a_X, int & a_Y, int & a_Z, char a_Direction, boo
|
||||
case BLOCK_FACE_SOUTH: a_Z++; break;
|
||||
default:
|
||||
{
|
||||
ASSERT(!"Unknown direction");
|
||||
LOGWARNING("AddDirection(): Unknown direction: %d", a_Direction);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -147,7 +147,7 @@ inline void AddDirection( int & a_X, int & a_Y, int & a_Z, char a_Direction, boo
|
||||
case BLOCK_FACE_SOUTH: a_Z--; break;
|
||||
default:
|
||||
{
|
||||
ASSERT(!"Unknown direction");
|
||||
LOGWARNING("AddDirection(): Unknown inv direction: %d", a_Direction);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user