summaryrefslogtreecommitdiff
path: root/src/content_mapblock.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-06-26 19:23:05 +0300
committerPerttu Ahola <celeron55@gmail.com>2011-06-26 19:23:05 +0300
commit97840e93b550f4436620f941dc088bb956ce13c8 (patch)
tree88da33bb51b698a621e08d09f7bc3f5e952d7909 /src/content_mapblock.cpp
parentd3d369a63b25be74f14b58ebda0d40b39d8da6ab (diff)
downloadminetest-97840e93b550f4436620f941dc088bb956ce13c8.tar.gz
minetest-97840e93b550f4436620f941dc088bb956ce13c8.tar.bz2
minetest-97840e93b550f4436620f941dc088bb956ce13c8.zip
changed one "if" to "else if" in content_mapblock.cpp
Diffstat (limited to 'src/content_mapblock.cpp')
-rw-r--r--src/content_mapblock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content_mapblock.cpp b/src/content_mapblock.cpp
index bc701aadf..bdc9baa2a 100644
--- a/src/content_mapblock.cpp
+++ b/src/content_mapblock.cpp
@@ -262,7 +262,7 @@ void mapblock_mesh_generate_special(MeshMakeData *data,
/*
Signs on walls
*/
- if(n.d == CONTENT_SIGN_WALL)
+ else if(n.d == CONTENT_SIGN_WALL)
{
u8 l = decode_light(n.getLightBlend(data->m_daynight_ratio));
video::SColor c(255,l,l,l);