AP_Scripting: Fix bad location changes

This commit is contained in:
Michael du Breuil 2019-02-28 23:39:50 -07:00 committed by Andrew Tridgell
parent 102141756a
commit 7183b504a7

View File

@ -219,7 +219,7 @@ static int location_distance(lua_State *L) {
return luaL_argerror(L, args, "too many arguments");
}
lua_pushnumber(L, *check_location(L, -2).get_distance(*check_location(L, -1)));
lua_pushnumber(L, check_location(L, -2)->get_distance(*check_location(L, -1)));
return 1;
}
@ -271,9 +271,8 @@ static int location_offset(lua_State *L) {
return luaL_argerror(L, args, "too many arguments");
}
*check_location(L, -3).offset(
luaL_checknumber(L, -2),
luaL_checknumber(L, -1));
check_location(L, -3)->offset(luaL_checknumber(L, -2),
luaL_checknumber(L, -1));
lua_pop(L, 2);