mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Getv3intfield: Fix logic of return bool
This commit is contained in:
parent
cbb9301bea
commit
1a88c4b7a5
1 changed files with 3 additions and 3 deletions
|
@ -66,9 +66,9 @@ bool getv3intfield(lua_State *L, int index,
|
|||
lua_getfield(L, index, fieldname);
|
||||
bool got = false;
|
||||
if (lua_istable(L, -1)) {
|
||||
got = getintfield(L, index, "x", result.X) ||
|
||||
getintfield(L, index, "y", result.Y) ||
|
||||
getintfield(L, index, "z", result.Z);
|
||||
got |= getintfield(L, -1, "x", result.X);
|
||||
got |= getintfield(L, -1, "y", result.Y);
|
||||
got |= getintfield(L, -1, "z", result.Z);
|
||||
}
|
||||
lua_pop(L, 1);
|
||||
return got;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue