From 7fa6abd4aaaf3f1f4a6ee0068b2c7f2a3354d77b Mon Sep 17 00:00:00 2001 From: Coder12a <38924418+Coder12a@users.noreply.github.com> Date: Thu, 23 May 2019 16:52:38 -0500 Subject: [PATCH] Update /f (un)claim help --- claim_events.lua | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/claim_events.lua b/claim_events.lua index f9646ba..d8bd61e 100644 --- a/claim_events.lua +++ b/claim_events.lua @@ -271,7 +271,7 @@ function factions.claim_all(player, faction) end function factions.claim_help(player, func) - local text = ", " + local text = "All params for /f claim: , " if func == "o" or func == "one" then text = "/f claim o\n/f claim one\n Claim one parcel." @@ -396,7 +396,7 @@ function factions.unclaim_all(player, faction) end function factions.unclaim_help(player, func) - local text = ", " + local text = "All params for /f unclaim: , " if func == "o" or func == "one" then text = "/f unclaim o\n/f unclaim one\n Unclaim one parcel." @@ -415,8 +415,7 @@ function factions.unclaim_help(player, func) minetest.chat_send_player(player, text) end -minetest.register_on_leaveplayer( - function(player) +minetest.register_on_leaveplayer(function(player) auto_list[player:get_player_name()] = nil end -) \ No newline at end of file +)