This commit is contained in:
Lars Mueller 2024-03-05 15:13:14 +01:00
parent 6490b09814
commit ffc8c46908
1 changed files with 2 additions and 2 deletions

View File

@ -1122,9 +1122,9 @@ void push_nodebox(lua_State *L, const NodeBox &box)
else if (box.type == NODEBOX_LEVELED_PLANTLIKE_ROOTED)
lua_pushstring(L, "leveled_plantlike_rooted");
lua_setfield(L, -2, "type");
push_box(L, box.fixed);
push_aabb3f_vector(L, box.fixed);
lua_setfield(L, -2, "fixed");
push_box(L, box.leveled_fixed);
push_aabb3f_vector(L, box.leveled_fixed);
lua_setfield(L, -2, "leveled_fixed");
break;
case NODEBOX_WALLMOUNTED: