diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-08-18 18:18:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-18 18:18:25 +0200 |
commit | c42753338924bb29c61081c9f269772f89bcd808 (patch) | |
tree | 3ccbf49ad802c57a1288ea978268315b68d8e65f /src/mapgen_v5.cpp | |
parent | fb196be8cf8606cfab144e2fe62d9c9d1f50932f (diff) | |
download | dragonfireclient-c42753338924bb29c61081c9f269772f89bcd808.tar.xz |
Modernize various files (src/m*) (#6267)
* Modernize various files (src/m*)
* range-based for loops
* code style
* C++ headers instead of C headers
* Default operators
* empty function
Thanks to clang-tidy
Diffstat (limited to 'src/mapgen_v5.cpp')
-rw-r--r-- | src/mapgen_v5.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mapgen_v5.cpp b/src/mapgen_v5.cpp index 2cfb065f9..d7e9d6664 100644 --- a/src/mapgen_v5.cpp +++ b/src/mapgen_v5.cpp @@ -156,9 +156,9 @@ int MapgenV5::getSpawnLevelAtPoint(v2s16 p) if (n_ground * f > y - h) { // If solid if (y < water_level || y > max_spawn_y) return MAX_MAP_GENERATION_LIMIT; // Unsuitable spawn point - else - // y + 2 because y is surface and due to biome 'dust' nodes. - return y + 2; + + // y + 2 because y is surface and due to biome 'dust' nodes. + return y + 2; } } // Unsuitable spawn position, no ground found |