diff --git a/build.sh b/build.sh index 3a130f2..5f624a8 100755 --- a/build.sh +++ b/build.sh @@ -1,11 +1,11 @@ #!/usr/bin/bash echo "making setlevel.c from editor" rm src/setlevel.c -python compile_level.py +python3 compile_level.py echo "done" echo "making times.c from times.lvl" rm src/times.c -python time.py +python3 time.py echo "done" echo "building for cg" fxsdk build-cg diff --git a/editor.sh b/editor.sh index 3463d43..65fa523 100755 --- a/editor.sh +++ b/editor.sh @@ -1,3 +1,3 @@ #!/usr/bin/bash echo "opening editor" -python editor/AST3generator.py +python3 editor/AST3generator.py