summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-03-17 07:54:49 +0100
committerGitHub <noreply@github.com>2017-03-17 07:54:49 +0100
commit7b74f04a611ddaf36d79c0c9ebbf7f2b89c12a64 (patch)
tree51f9cf13b08c9e4e444780ff479e3ffee4649699 /src/game.cpp
parent0891975ad6c8d6d3e15b20f33b22cf5baca7eb62 (diff)
downloadminetest-7b74f04a611ddaf36d79c0c9ebbf7f2b89c12a64.tar.gz
minetest-7b74f04a611ddaf36d79c0c9ebbf7f2b89c12a64.tar.bz2
minetest-7b74f04a611ddaf36d79c0c9ebbf7f2b89c12a64.zip
[CSM] Fix minimap problems (#5405)
This fixes issue #5404
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 386267017..4a3acf493 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -1769,7 +1769,7 @@ void Game::run()
updateProfilerGraphs(&graph);
// Update if minimap has been disabled by the server
- flags.show_minimap = client->shouldShowMinimap();
+ flags.show_minimap &= client->shouldShowMinimap();
}
}