Don't corrupt stepheight when setting other properties

This commit is contained in:
Ciaran Gultnieks 2014-11-17 21:17:36 +00:00 committed by Kahrl
parent 264d740c9d
commit 77137a92cf
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ void read_object_properties(lua_State *L, int index,
getboolfield(L, -1, "is_visible", prop->is_visible);
getboolfield(L, -1, "makes_footstep_sound", prop->makes_footstep_sound);
getfloatfield(L, -1, "automatic_rotate", prop->automatic_rotate);
getfloatfield(L, -1, "stepheight", prop->stepheight);
prop->stepheight*=BS;
if (getfloatfield(L, -1, "stepheight", prop->stepheight))
prop->stepheight *= BS;
lua_getfield(L, -1, "automatic_face_movement_dir");
if (lua_isnumber(L, -1)) {
prop->automatic_face_movement_dir = true;