mirror of
https://github.com/minetest/minetest.git
synced 2025-01-12 00:07:35 +01:00
Fix missing pop
Previous commit 70ea5d552e283bd5bce3278cbf3819bd87ba2602 "Add support for limiting rotation of automatic face movement dir entitys" by sapier has broken minetest's feature to open worlds. This was due to a missing stack pop operation. Thanks to @oleastre for reporting this bug and suggesting the fix.
This commit is contained in:
parent
70ea5d552e
commit
f192a5bc43
@ -209,6 +209,7 @@ void read_object_properties(lua_State *L, int index,
|
|||||||
if (read_color(L, -1, &color))
|
if (read_color(L, -1, &color))
|
||||||
prop->nametag_color = color;
|
prop->nametag_color = color;
|
||||||
}
|
}
|
||||||
|
lua_pop(L, 1);
|
||||||
|
|
||||||
lua_getfield(L, -1, "automatic_face_movement_max_rotation_per_sec");
|
lua_getfield(L, -1, "automatic_face_movement_max_rotation_per_sec");
|
||||||
if (lua_isnumber(L, -1)) {
|
if (lua_isnumber(L, -1)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user