Bugfix: dont highlight (0,0,0) when theres no node pointed.

This commit is contained in:
RealBadAngel 2014-10-03 16:03:14 +02:00
parent 0920f55eb4
commit b9cb196d49
1 changed files with 7 additions and 2 deletions

View File

@ -2786,8 +2786,13 @@ void the_game(bool &kill, bool random_input, InputHandler *input,
if(pointed != pointed_old)
{
infostream<<"Pointing at "<<pointed.dump()<<std::endl;
if (g_settings->getBool("enable_node_highlighting"))
client.setHighlighted(pointed.node_undersurface, show_hud);
if (g_settings->getBool("enable_node_highlighting")) {
if (pointed.type == POINTEDTHING_NODE) {
client.setHighlighted(pointed.node_undersurface, show_hud);
} else {
client.setHighlighted(pointed.node_undersurface, false);
}
}
}
/*