Skip to content

Commit

Permalink
Update KohlsLite.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
S-PScripts authored Oct 8, 2024
1 parent 174752f commit 6788969
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Luau/KAH/Main Scripts/KohlsLite.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5162,14 +5162,14 @@ return
if string.sub(msg:lower(), 1, #prefix + 9) == prefix..'listacton' then
local anz = {}

for an in pairs(actions) do
table.insert(anz, an)
for actname in pairs(actions) do
table.insert(anz, actname)
end

table.sort(anz)

for _, an in ipairs(anz) do
print(an)
for _, actname in ipairs(anz) do
print(actname)
end
end

Expand Down

0 comments on commit 6788969

Please sign in to comment.