We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76c42cd commit a9ac8c1Copy full SHA for a9ac8c1
1 file changed
src/Launch.lua
@@ -4,8 +4,13 @@
4
-- Module: Launch
5
-- Program entry point; loads and runs the Main module within a protected environment
6
--
7
+local env_pob_test_mode_raw = os.getenv("POB_TEST_MODE")
8
-local isTestMode = os.getenv("POB_TEST_MODE") == "1"
9
+print("--- Debugging POB_TEST_MODE ---")
10
+print("Raw POB_TEST_MODE from os.getenv:", tostring(env_pob_test_mode_raw))
11
+local isTestMode = env_pob_test_mode_raw == "1"
12
+print("isTestMode calculated value:", tostring(isTestMode))
13
+print("-------------------------------")
14
15
local startTime = GetTime()
16
APP_NAME = "Path of Building (PoE2)"
0 commit comments