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
"Aliens")
open_url "https://files.jantrid.net/aliens/"
;;&
exit 0
;;
"Donate")
open_url "https://ko-fi.com/stormux"
;;&
*)
exit 0
;;
esac
exit 0
exec ${game%|}
}