From ce2fc28dc790b02c7a9beb99ca39204aa78906ab Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Wed, 14 Oct 2009 23:26:02 -0600 Subject: lua_tofloat doesn't exist in Lua 5.1 Also make that parameter optional --- src/scripting/lua.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp index ae02eabf..b17bc90f 100644 --- a/src/scripting/lua.cpp +++ b/src/scripting/lua.cpp @@ -590,7 +590,7 @@ static int being_type(lua_State *s) */ static int being_walk(lua_State *s) { - if (!lua_isnumber(s, 2) || !lua_isnumber(s, 3) || !lua_isnumber(s, 4)) + if (!lua_isnumber(s, 2) || !lua_isnumber(s, 3)) { raiseScriptError(s, "being_walk called with incorrect parameters."); return 0; @@ -598,11 +598,12 @@ static int being_walk(lua_State *s) lua_pushlightuserdata(s, (void *)®istryKey); lua_gettable(s, LUA_REGISTRYINDEX); - Being *being = getBeing(s, 1); Point destination(lua_tointeger(s, 2), lua_tointeger(s, 3)); being->setDestination(destination); - being->setSpeed(lua_tofloat(s, 4)); + + if (lua_isnumber(s, 4)) + being->setSpeed((float) lua_tonumber(s, 4)); return 0; } -- cgit v1.2.3-70-g09d2