diff --git a/src/lua_hudlib.c b/src/lua_hudlib.c index 19390d50d..e0132828c 100644 --- a/src/lua_hudlib.c +++ b/src/lua_hudlib.c @@ -137,7 +137,6 @@ enum cameraf { camera_ceilingz, camera_radius, camera_height, - camera_relativex, camera_momx, camera_momy, camera_momz @@ -158,7 +157,6 @@ static const char *const camera_opt[] = { "ceilingz", "radius", "height", - "relativex", "momx", "momy", "momz", @@ -312,9 +310,6 @@ static int camera_get(lua_State *L) case camera_height: lua_pushinteger(L, cam->height); break; - case camera_relativex: - lua_pushinteger(L, cam->relativex); - break; case camera_momx: lua_pushinteger(L, cam->momx); break;