X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fdungeongen.cpp;h=2027b7f1381c0fac9aca3a45e8d7c1f31b7b5c85;hb=a020d1b653f94fbcaac06c15f9dbab4521fda355;hp=ff0a39e9ed5934bdca1ed224de10d3ef3c4e3932;hpb=c3708b456e90bccf19e7c82c54a93c8cb7c8896c;p=oweals%2Fminetest.git diff --git a/src/dungeongen.cpp b/src/dungeongen.cpp index ff0a39e9e..2027b7f13 100644 --- a/src/dungeongen.cpp +++ b/src/dungeongen.cpp @@ -31,12 +31,9 @@ with this program; if not, write to the Free Software Foundation, Inc., //#define DGEN_USE_TORCHES -NoiseParams nparams_dungeon_rarity = - {0.0, 1.0, v3f(500.0, 500.0, 500.0), 0, 2, 0.8}; -NoiseParams nparams_dungeon_wetness = - {0.0, 1.0, v3f(40.0, 40.0, 40.0), 32474, 4, 1.1}; -NoiseParams nparams_dungeon_density = - {0.0, 1.0, v3f(2.5, 2.5, 2.5), 0, 2, 1.4}; +NoiseParams nparams_dungeon_rarity(0.0, 1.0, v3f(500.0, 500.0, 500.0), 0, 2, 0.8); +NoiseParams nparams_dungeon_wetness(0.0, 1.0, v3f(40.0, 40.0, 40.0), 32474, 4, 1.1); +NoiseParams nparams_dungeon_density(0.0, 1.0, v3f(2.5, 2.5, 2.5), 0, 2, 1.4); ///////////////////////////////////////////////////////////////////////////////