aboutsummaryrefslogtreecommitdiff
path: root/builtin/common/chatcommands.lua
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2020-12-12 14:06:41 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2020-12-12 14:06:41 +0100
commita34c610938eb03f449bdb077e61414213e576ebc (patch)
tree17b6c63fed2ced4a2603d5dccd78ce5cca185d2b /builtin/common/chatcommands.lua
parent7250cf2c1c29b685b8ac3552c296f11c8178b0a0 (diff)
downloaddragonfireclient-a34c610938eb03f449bdb077e61414213e576ebc.tar.xz
Make GitHub Actions Happy try 2
Diffstat (limited to 'builtin/common/chatcommands.lua')
-rw-r--r--builtin/common/chatcommands.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/common/chatcommands.lua b/builtin/common/chatcommands.lua
index bf989db7d..fb593e839 100644
--- a/builtin/common/chatcommands.lua
+++ b/builtin/common/chatcommands.lua
@@ -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."