mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-22 07:53:00 +02:00
Fix tpt.element(<something not a string or number>) returning 1
This commit is contained in:
@@ -713,7 +713,8 @@ int luatpt_getelement(lua_State *l)
|
||||
}
|
||||
else
|
||||
{
|
||||
char* name = (char*)luaL_optstring(l, 1, "dust");
|
||||
luaL_checktype(l, 1, LUA_TSTRING);
|
||||
char* name = (char*)luaL_optstring(l, 1, "");
|
||||
if ((t = luacon_ci->GetParticleType(name))==-1)
|
||||
return luaL_error(l, "Unrecognised element '%s'", name);
|
||||
lua_pushinteger(l, t);
|
||||
|
Reference in New Issue
Block a user