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

master
Perttu Ahola 2011-06-26 19:23:05 +03:00
parent d3d369a63b
commit 97840e93b5
1 changed files with 1 additions and 1 deletions

View File

@ -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);