Merge pull request #447 from sapier/add_lua_log_parameter_check

BUGFIX: check parameters for minetest.log lua function
This commit is contained in:
kwolekr 2013-01-26 10:58:53 -08:00
commit bcc0ca93d4
1 changed files with 2 additions and 2 deletions

View File

@ -4428,8 +4428,8 @@ static int l_log(lua_State *L)
}
else
{
std::string levelname = lua_tostring(L, 1);
text = lua_tostring(L, 2);
std::string levelname = luaL_checkstring(L, 1);
text = luaL_checkstring(L, 2);
if(levelname == "error")
level = LMT_ERROR;
else if(levelname == "action")