From 3473f60809adb152cb28ee5e50b1ddd1eb9548a1 Mon Sep 17 00:00:00 2001 From: MoNTE48 Date: Sun, 1 Aug 2021 17:08:39 +0300 Subject: [PATCH] Fix `/areas_cleanup` command log message --- chatcommands.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatcommands.lua b/chatcommands.lua index 189b498..bc5579a 100644 --- a/chatcommands.lua +++ b/chatcommands.lua @@ -431,7 +431,7 @@ minetest.register_chatcommand("areas_cleanup", { end areas:save() - return true, S("Total areas: @1, Removed: @1 areas. New count: @3.", + return true, S("Total areas: @1, Removed: @2 areas. New count: @3.", total, count, (total - count)) end })