Skip to content

Commit

Permalink
Restore intended functionality to minimap markers (#8819)
Browse files Browse the repository at this point in the history
  • Loading branch information
theviper121 authored and SmallJoker committed Aug 19, 2019
1 parent dea5a15 commit ded5da7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/minimap.cpp
Expand Up @@ -569,7 +569,7 @@ void Minimap::updateActiveMarkers()
m_active_markers.clear();

for (Nametag *nametag : nametags) {
v3s16 pos = floatToInt(nametag->parent_node->getPosition() +
v3s16 pos = floatToInt(nametag->parent_node->getAbsolutePosition() +
intToFloat(client->getCamera()->getOffset(), BS), BS);
pos -= data->pos - v3s16(data->map_size / 2,
data->scan_height / 2,
Expand Down

0 comments on commit ded5da7

Please sign in to comment.