Compare commits

...

3 Commits

Author SHA1 Message Date
fe49284843
BOOM 2024-09-27 17:47:38 -04:00
6d8c4355a8
what 2024-09-27 17:47:38 -04:00
280f690e6a
linux binary I guess 2024-09-27 17:47:38 -04:00
5 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,7 +1,7 @@
discordia.log
gateway.json
apikey.lua
token.lua
Token.lua
deps
sensdb.lua
minecraft_data.json

BIN
exes/lit Executable file

Binary file not shown.

BIN
exes/luvi Executable file

Binary file not shown.

BIN
exes/luvit Executable file

Binary file not shown.

View File

@ -30,7 +30,7 @@ function CommandCollector:Collect()
local CommandsContainerPath = self.Prefix..'Commands/'
for File in io.popen('dir "./src/'..CommandsContainerPath..'" /b'):lines() do
for File in io.popen('ls ./src/'..CommandsContainerPath):lines() do
if File:sub(1, 1) ~= IGNORE_STARTING_FILE_NAME then
local Success, Return = pcall(require, RELATIVE_PATH_TO_COMMANDS..CommandsContainerPath..File)
if Success then