Decoration: Fix default parameter values

This commit is contained in:
kwolekr 2014-12-30 00:52:17 -05:00
parent cfec470b51
commit b589353d89
1 changed files with 2 additions and 2 deletions

View File

@ -522,8 +522,8 @@ int ModApiMapgen::l_register_decoration(lua_State *L)
deco->name = getstringfield_default(L, index, "name", "");
deco->fill_ratio = getfloatfield_default(L, index, "fill_ratio", 0.02);
deco->height_min = getintfield_default(L, index, "height_min", 31000);
deco->height_max = getintfield_default(L, index, "height_max", -31000);
deco->height_min = getintfield_default(L, index, "height_min", -31000);
deco->height_max = getintfield_default(L, index, "height_max", 31000);
deco->sidelen = getintfield_default(L, index, "sidelen", 8);
if (deco->sidelen <= 0) {
errorstream << "register_decoration: sidelen must be "