From 9bb2a745c493e33baa699d75d02a1e0d88afeffc Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Thu, 13 Mar 2014 09:13:08 +0000 Subject: [PATCH] Fix error message --- mods/capturetheflag/cli.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/capturetheflag/cli.lua b/mods/capturetheflag/cli.lua index fd3fe8b..851af38 100644 --- a/mods/capturetheflag/cli.lua +++ b/mods/capturetheflag/cli.lua @@ -212,7 +212,7 @@ minetest.register_chatcommand("team_owner", { end cf.save() else - minetest.chat_send_player(name, "Player "..param.." does not exist",false) + minetest.chat_send_player(name, "Unable to do that :/ "..param.." does not exist, or is not part of a valid team.",false) end end, })