Bugfix: dont highlight (0,0,0) when theres no node pointed.
parent
0920f55eb4
commit
b9cb196d49
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue