1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Remove lua_State parameter from LuaError::LuaError

This commit is contained in:
ShadowNinja 2014-03-15 16:28:59 -04:00
parent f8b7555558
commit 31fe72dbac
13 changed files with 39 additions and 52 deletions

View file

@ -330,10 +330,10 @@ int LuaPseudoRandom::l_next(lua_State *L)
max = luaL_checkinteger(L, 3);
if(max < min){
errorstream<<"PseudoRandom.next(): max="<<max<<" min="<<min<<std::endl;
throw LuaError(NULL, "PseudoRandom.next(): max < min");
throw LuaError("PseudoRandom.next(): max < min");
}
if(max - min != 32767 && max - min > 32767/5)
throw LuaError(NULL, "PseudoRandom.next() max-min is not 32767"
throw LuaError("PseudoRandom.next() max-min is not 32767"
" and is > 32768/5. This is disallowed due to"
" the bad random distribution the"
" implementation would otherwise make.");