From 0e64fc45b909b50dcd7551e4b9492517fbaee40e Mon Sep 17 00:00:00 2001 From: kwolekr Date: Fri, 8 May 2015 00:03:41 -0400 Subject: Fix missing Y component assignment in check_v3f --- src/script/common/c_converter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/common/c_converter.cpp b/src/script/common/c_converter.cpp index 6bf48db0d..157db3b7d 100644 --- a/src/script/common/c_converter.cpp +++ b/src/script/common/c_converter.cpp @@ -154,7 +154,7 @@ v3f check_v3f(lua_State *L, int index) lua_pop(L, 1); lua_getfield(L, index, "y"); CHECK_POS_COORD("y"); - pos.Z = lua_tonumber(L, -1); + pos.Y = lua_tonumber(L, -1); lua_pop(L, 1); lua_getfield(L, index, "z"); CHECK_POS_COORD("z"); -- cgit v1.2.3