fix being unable to set floating point values in element.property

broken in e92bbac7001b
This commit is contained in:
jacob1 2015-12-18 18:21:04 -05:00
parent 07be209094
commit 37eb674d40

View File

@ -2560,7 +2560,7 @@ int LuaScriptInterface::elements_property(lua_State * l)
*((unsigned int*)(((unsigned char*)&luacon_sim->elements[id])+offset)) = luaL_checkinteger(l, 3);
break;
case StructProperty::Float:
*((float*)(((unsigned char*)&luacon_sim->elements[id])+offset)) = luaL_checkinteger(l, 3);
*((float*)(((unsigned char*)&luacon_sim->elements[id])+offset)) = luaL_checknumber(l, 3);
break;
case StructProperty::Char:
*((char*)(((unsigned char*)&luacon_sim->elements[id])+offset)) = luaL_checkinteger(l, 3);