]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - builtin/common/chatcommands.lua
Merge branch 'master' of https://github.com/minetest/minetest
[dragonfireclient.git] / builtin / common / chatcommands.lua
index 709c3d00a7738b6323e4110702b46c6a5df70313..fb593e8399619859296b6d5a57a87516f3bf7c9c 100644 (file)
@@ -49,7 +49,7 @@ if INIT == "client" then
                                        local i = table.indexof(list, item)
                                        if i == -1 then
                                                return false, item .. " is not on the list."
-                                       else    
+                                       else
                                                table.remove(list, i)
                                                core.settings:set(setting, table.concat(list, ","))
                                                return true, "Removed " .. item .. " from the list."
@@ -68,7 +68,7 @@ if INIT == "client" then
                                        end
                                end
                        end
-                       return false, "Invalid usage. (See /help " .. command .. ")"
+                       return false, "Invalid usage. (See .help " .. command .. ")"
                end
                core.register_chatcommand(command, def)
        end