From bb5d150f948a4d3aa90a7da14aff2736a43eaa29 Mon Sep 17 00:00:00 2001 From: dutchie031 Date: Sat, 28 Sep 2024 15:46:33 +0200 Subject: [PATCH] moved files and added compile script --- SpearheadCompile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SpearheadCompile.py b/SpearheadCompile.py index 6a4553b..c22199e 100644 --- a/SpearheadCompile.py +++ b/SpearheadCompile.py @@ -3,7 +3,7 @@ import sys import glob def compileClasses(classesPath): - global resultString = "" + resultString = "" for name in glob.glob(f"{classesPath}/**/*.lua"): with open(name, 'r') as file: resultString += file.read()