From ffc8c469085578dc7531b26926a077677b1d12da Mon Sep 17 00:00:00 2001 From: Lars Mueller Date: Tue, 5 Mar 2024 15:13:14 +0100 Subject: [PATCH] Fix --- src/script/common/c_content.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/script/common/c_content.cpp b/src/script/common/c_content.cpp index f58533b36..28454a8fb 100644 --- a/src/script/common/c_content.cpp +++ b/src/script/common/c_content.cpp @@ -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: