From 8eb9cebdd058c7df0c1735cd083f09d962c7bb84 Mon Sep 17 00:00:00 2001 From: kwolekr Date: Sun, 4 Jan 2015 03:21:42 -0500 Subject: Add warning about using deprecated fields in Mapgen API and update docs --- src/script/lua_api/l_mapgen.cpp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/script/lua_api/l_mapgen.cpp b/src/script/lua_api/l_mapgen.cpp index d7c687bd8..7d9987e72 100644 --- a/src/script/lua_api/l_mapgen.cpp +++ b/src/script/lua_api/l_mapgen.cpp @@ -375,12 +375,11 @@ int ModApiMapgen::l_set_mapgen_params(lua_State *L) if (lua_isnumber(L, -1)) params->water_level = lua_tointeger(L, -1); + warn_if_field_exists(L, 1, "flagmask", + "Deprecated: flags field now includes unset flags."); lua_getfield(L, 1, "flagmask"); - if (lua_isstring(L, -1)) { + if (lua_isstring(L, -1)) params->flags &= ~readFlagString(lua_tostring(L, -1), flagdesc_mapgen, NULL); - errorstream << "set_mapgen_params(): flagmask field is deprecated, " - "see lua_api.txt" << std::endl; - } if (getflagsfield(L, 1, "flags", flagdesc_mapgen, &flags, &flagmask)) { params->flags &= ~flagmask; @@ -687,8 +686,11 @@ int ModApiMapgen::l_register_ore(lua_State *L) ore->noise = NULL; ore->flags = 0; - // height_min and height_max are aliases for y_min and y_max, respectively, - // for backwards compatibility + warn_if_field_exists(L, index, "height_min", + "Deprecated: new name is \"y_min\"."); + warn_if_field_exists(L, index, "height_max", + "Deprecated: new name is \"y_max\"."); + int ymin, ymax; if (!getintfield(L, index, "y_min", ymin) && !getintfield(L, index, "height_min", ymin)) -- cgit v1.2.3