mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Fixed wrongly named invref:get_location() table members for nodes.
Makes the result compatible with the minetest.get_inventory(location) param.
This commit is contained in:
parent
96fe1de832
commit
f62ddf9022
@ -306,10 +306,10 @@ int InvRef::l_get_location(lua_State *L)
|
||||
return 1;
|
||||
case InventoryLocation::NODEMETA:
|
||||
lua_newtable(L);
|
||||
lua_pushstring(L, "nodemeta");
|
||||
lua_pushstring(L, "node");
|
||||
lua_setfield(L, -2, "type");
|
||||
push_v3s16(L, loc.p);
|
||||
lua_setfield(L, -2, "name");
|
||||
lua_setfield(L, -2, "pos");
|
||||
return 1;
|
||||
case InventoryLocation::DETACHED:
|
||||
lua_newtable(L);
|
||||
|
Loading…
Reference in New Issue
Block a user