Skip to content

Commit 93f155f

Browse files
authored
Make /tell need shout priv (#553)
1 parent 583d2c1 commit 93f155f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mesecons_commandblock/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ minetest.register_chatcommand("say", {
1010
minetest.register_chatcommand("tell", {
1111
params = "<name> <text>",
1212
description = "Say <text> to <name> privately",
13+
privs = {shout=true},
1314
func = function(name, param)
1415
local found, _, target, message = param:find("^([^%s]+)%s+(.*)$")
1516
if found == nil then

0 commit comments

Comments
 (0)