We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab2147 commit 831a561Copy full SHA for 831a561
1 file changed
data/scripts/talkactions/god/manage_kv.lua
@@ -51,6 +51,10 @@ function getAllKV.onSay(player, words, param)
51
return
52
end
53
54
+ table.sort(keys, function(a, b)
55
+ return tostring(a):lower() < tostring(b):lower()
56
+ end)
57
+
58
for _, key in ipairs(keys) do
59
local value = kv:get(key)
60
if type(value) == "number" and value >= 0 then
0 commit comments