From 8ab9c7c1dd1eb7b5acddb72a11213190bbdc8a33 Mon Sep 17 00:00:00 2001 From: entar Date: Fri, 5 Sep 2025 12:29:48 +0700 Subject: [PATCH] Updates --- .gitignore | 1 + init.lua | 7 ++++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 96374c4..f9ee50e 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ $RECYCLE.BIN/ Network Trash Folder Temporary Items .apdisk +credentials.lua \ No newline at end of file diff --git a/init.lua b/init.lua index 8498d87..84cd873 100644 --- a/init.lua +++ b/init.lua @@ -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 \ No newline at end of file