diff options
author | Alistair Findlay <psypherium2010@gmail.com> | 2019-11-03 05:28:55 +1100 |
---|---|---|
committer | SmallJoker <SmallJoker@users.noreply.github.com> | 2019-11-02 19:28:55 +0100 |
commit | 5f835a72b22b7a8830f7c9a1710f1ba361a7bbb1 (patch) | |
tree | c23e9b08c95e35433690e12f9e33e60db96c6857 /builtin | |
parent | f2e62298a5b204045f01e399e78eb84072df967a (diff) | |
download | minetest-5f835a72b22b7a8830f7c9a1710f1ba361a7bbb1.tar.gz minetest-5f835a72b22b7a8830f7c9a1710f1ba361a7bbb1.tar.bz2 minetest-5f835a72b22b7a8830f7c9a1710f1ba361a7bbb1.zip |
Builtin: Improve /clearobjects message (#9084)
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/game/chat.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/game/chat.lua b/builtin/game/chat.lua index ad703b94c..424cbfe3f 100644 --- a/builtin/game/chat.lua +++ b/builtin/game/chat.lua @@ -981,8 +981,8 @@ core.register_chatcommand("clearobjects", { core.log("action", name .. " clears all objects (" .. options.mode .. " mode).") - core.chat_send_all("Clearing all objects. This may take long." - .. " You may experience a timeout. (by " + core.chat_send_all("Clearing all objects. This may take a long time." + .. " You may experience a timeout. (by " .. name .. ")") core.clear_objects(options) core.log("action", "Object clearing done.") |