From 826d1a9a8e7b535af7a54d33186d2c38487a72e2 Mon Sep 17 00:00:00 2001 From: Hugues Ross Date: Sat, 13 Jun 2020 09:48:06 -0400 Subject: [PATCH] Don't grant cartographer priv to singleplayer by default --- commands.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.lua b/commands.lua index 572a514..90bac33 100644 --- a/commands.lua +++ b/commands.lua @@ -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, });