From 912ba1e47f61be18fa01cc91936929168c883f7b Mon Sep 17 00:00:00 2001 From: paramat Date: Tue, 21 Nov 2017 02:55:33 +0000 Subject: Clearobjects: Send progress messages to terminal using actionstream Change default mode to 'quick' as 'full' can lock up a server for a long time. --- builtin/game/chatcommands.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'builtin/game') diff --git a/builtin/game/chatcommands.lua b/builtin/game/chatcommands.lua index cbfe2fb25..1402724e5 100644 --- a/builtin/game/chatcommands.lua +++ b/builtin/game/chatcommands.lua @@ -896,10 +896,10 @@ core.register_chatcommand("clearobjects", { privs = {server=true}, func = function(name, param) local options = {} - if param == "" or param == "full" then - options.mode = "full" - elseif param == "quick" then + if param == "" or param == "quick" then options.mode = "quick" + elseif param == "full" then + options.mode = "full" else return false, "Invalid usage, see /help clearobjects." end -- cgit v1.2.3