diff options
author | Dániel Juhász <juhdanad@gmail.com> | 2017-04-13 10:19:46 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2017-04-13 10:19:46 +0200 |
commit | 021e667511658fdafcece72315f0f71bb26c6c68 (patch) | |
tree | 13c2fa21e798fcd778c3713994404dfbbc865207 /src | |
parent | 8bdf9a44c62758b42420b42b584be9553d3eb32f (diff) | |
download | minetest-021e667511658fdafcece72315f0f71bb26c6c68.tar.gz minetest-021e667511658fdafcece72315f0f71bb26c6c68.tar.bz2 minetest-021e667511658fdafcece72315f0f71bb26c6c68.zip |
Add documentation for map block format 27 (#5576)
Diffstat (limited to 'src')
-rw-r--r-- | src/mapblock.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mapblock.h b/src/mapblock.h index c48f337e0..7ff613fe8 100644 --- a/src/mapblock.h +++ b/src/mapblock.h @@ -633,9 +633,10 @@ private: /*! * Each bit indicates if light spreading was finished * in a direction. (Because the neighbor could also be unloaded.) - * Bits: day X+, day Y+, day Z+, day Z-, day Y-, day X-, - * night X+, night Y+, night Z+, night Z-, night Y-, night X-, - * nothing, nothing, nothing, nothing. + * Bits (most significant first): + * nothing, nothing, nothing, nothing, + * night X-, night Y-, night Z-, night Z+, night Y+, night X+, + * day X-, day Y-, day Z-, day Z+, day Y+, day X+. */ u16 m_lighting_complete; |