From 189f7a79b5bf4ba7e4fceb1cffdfad8298379c5a Mon Sep 17 00:00:00 2001 From: Valansch Date: Thu, 27 Jul 2017 11:18:40 +0200 Subject: [PATCH] removed /follow because it doesnt work yet --- custom_commands.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/custom_commands.lua b/custom_commands.lua index 59cfbb73..1e7eaa6f 100644 --- a/custom_commands.lua +++ b/custom_commands.lua @@ -285,7 +285,8 @@ local function follow(cmd) if cmd.parameter ~= nil and game.players[cmd.parameter] ~= nil then global.follows[game.player.name] = cmd.parameter global.follows.n_entries = global.follows.n_entries + 1 - end + else + game.player.print(" makes you follow the player. Use /unfollow to stop following a player.") end end