This commit is contained in:
entar 2025-09-05 12:29:48 +07:00
parent 2b5cd6a16b
commit 8ab9c7c1dd
2 changed files with 7 additions and 1 deletions

1
.gitignore vendored
View File

@ -41,3 +41,4 @@ $RECYCLE.BIN/
Network Trash Folder
Temporary Items
.apdisk
credentials.lua

View File

@ -272,4 +272,9 @@ function GJ.fetchTables()
return t
end
return GJ
_G.gamejolt = GJ
local success, credentials = pcall(require, folder..".credentials")
if success then
gamejolt.init(credentials.id, credentials.key)
end