Set oerkki1 to not be drawn in completely dark

This commit is contained in:
Perttu Ahola 2011-04-25 11:55:40 +03:00
parent 041b5e5479
commit 42fb1ba676
1 changed files with 8 additions and 0 deletions

View File

@ -632,6 +632,14 @@ void Oerkki1CAO::updateLight(u8 light_at_pos)
{
if(m_node == NULL)
return;
if(light_at_pos <= 2)
{
m_node->setVisible(false);
return;
}
m_node->setVisible(true);
u8 li = decode_light(light_at_pos);
video::SColor color(255,li,li,li);