diff --git a/src/script/common/c_content.cpp b/src/script/common/c_content.cpp
index 1972c40e0be98a502d83db253d7c21c14a31cd3f..bf4da41eccccf1746a5545284b6e1c3a7d404839 100644
--- a/src/script/common/c_content.cpp
+++ b/src/script/common/c_content.cpp
@@ -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;