Skip to content
This repository was archived by the owner on Aug 3, 2024. It is now read-only.

Commit 77b27c9

Browse files
authored
Update admin.lua
1 parent 6768e3d commit 77b27c9

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

admin.lua

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ end
5050

5151
commands = {
5252
help = function(...)
53-
local a = 0
53+
local i = 0
54+
5455
for key, value in pairs(commands) do
55-
a = a + 1
56-
rconsoleprint(a .. ') ' .. key .. '\n')
56+
i = i + 1
57+
58+
rconsoleprint(i .. ".) " .. key .. "\n")
5759
end
5860
end,
5961

0 commit comments

Comments
 (0)