Fixed a major bug that was preventing games from launching.

This commit is contained in:
Storm Dragon 2022-03-13 03:00:13 -04:00
parent f9410d4623
commit 04b5e468e9

View File

@ -244,15 +244,13 @@ game_launcher() {
case "${game}" in case "${game}" in
"Aliens") "Aliens")
open_url "https://files.jantrid.net/aliens/" open_url "https://files.jantrid.net/aliens/"
;;& exit 0
;;
"Donate") "Donate")
open_url "https://ko-fi.com/stormux" open_url "https://ko-fi.com/stormux"
;;&
*)
exit 0 exit 0
;; ;;
esac esac
exit 0
exec ${game%|} exec ${game%|}
} }