Don't grant cartographer priv to singleplayer by default

This commit is contained in:
Hugues Ross 2020-06-13 09:48:06 -04:00
parent 25296eb40f
commit 826d1a9a8e
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ local MAXINT = 2147483647;
minetest.register_privilege("cartographer", {
description = "Allows use of the /map command to view local area maps",
give_to_singleplayer = true,
give_to_singleplayer = false,
give_to_admin = true,
});