From 2cbfdb0b78bbda24edde32bd3c633e01a29cf7db Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 2 Nov 2025 22:38:49 -0800 Subject: [PATCH] launch game display --- launch.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/launch.sh b/launch.sh index 14bb2ed..f289b3e 100755 --- a/launch.sh +++ b/launch.sh @@ -28,8 +28,12 @@ elif [[ "$1" == "html5" ]]; then python3 etc/report_generator5.py elif [[ "$1" == add* ]]; then python3 script/addFav.py +elif [[ "$1" == "game" ]]; then + python3 script/game_serve.py +elif [[ "$1" == "display" ]]; then + python3 script/game_serve.py else - echo "Please provide a bot to launch (pong/mesh) or a report to generate (html/html5) or addFav" + echo "Please provide a bot to launch (pong/mesh/display) or a report to generate (html/html5) or addFav" exit 1 fi