diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-12-12 14:06:41 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-12-12 14:06:41 +0100 |
commit | a34c610938eb03f449bdb077e61414213e576ebc (patch) | |
tree | 17b6c63fed2ced4a2603d5dccd78ce5cca185d2b /builtin/common/chatcommands.lua | |
parent | 7250cf2c1c29b685b8ac3552c296f11c8178b0a0 (diff) | |
download | dragonfireclient-a34c610938eb03f449bdb077e61414213e576ebc.tar.xz |
Make GitHub Actions Happy try 2
Diffstat (limited to 'builtin/common/chatcommands.lua')
-rw-r--r-- | builtin/common/chatcommands.lua | 2 |
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." |