Skip to content
Snippets Groups Projects
Commit 97840e93 authored by Perttu Ahola's avatar Perttu Ahola
Browse files

changed one "if" to "else if" in content_mapblock.cpp

parent d3d369a6
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment