Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
appgurueu committed Mar 5, 2024
1 parent 6490b09 commit ffc8c46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/script/common/c_content.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ffc8c46

Please sign in to comment.