Fixed a couple of path problems in custom doom launchers.

This commit is contained in:
Storm Dragon 2024-12-23 12:55:54 -05:00
parent 34e05f47a6
commit 97057bb1f2
6 changed files with 10 additions and 10 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# check for required wad.
source ${BASH_SOURCE[0]%/*}/TobyCustom/.dependencies
source ${BASH_SOURCE[0]%/*}/.dependencies
check_dependencies "${gamePath}/aoddoom1.wad" "https://www.moddb.com/mods/army-of-darkness-total-conversion/addons/army-of-darkness-doom-wad" "Place \"aoddoom1.wad\" in \"${gamePath}\"."
@ -20,4 +20,4 @@ elif [[ -e "${gamePath}/DoomMetalVol6.wad" ]]; then
gameOption+=("${gamePath}/DoomMetalVol6.wad")
fi
source ${BASH_SOURCE[0]%/*}/TobyCustom/.mapmenu
source ${BASH_SOURCE[0]%/*}/.mapmenu

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# check for required pk3.
source ${BASH_SOURCE[0]%/*}/TobyCustom/.dependencies
source ${BASH_SOURCE[0]%/*}/.dependencies
check_dependencies "${gamePath}/GMOTA_V.1.5.2.pk3" \
"https://combine-kegan.itch.io/gmota" \
"Place the file in ${gamePath}"
@ -15,7 +15,7 @@ gameOption=(
)
source ${BASH_SOURCE[0]%/*}/TobyCustom/.mapmenu
source ${BASH_SOURCE[0]%/*}/.mapmenu
flags=(
# Key bindings
'+bind Alt +altattack'

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# check for required pk3.
source ${BASH_SOURCE[0]%/*}/TobyCustom/.dependencies
source ${BASH_SOURCE[0]%/*}/.dependencies
check_dependencies "${gamePath}/Project_Brutality.pk3" \
"https://www.moddb.com/mods/project-brutality" \
"This should be included by default." \
@ -24,7 +24,7 @@ elif [[ -e "${gamePath}/DoomMetalVol6.wad" ]]; then
gameOption+=("${gamePath}/DoomMetalVol6.wad")
fi
source ${BASH_SOURCE[0]%/*}/TobyCustom/.mapmenu
source ${BASH_SOURCE[0]%/*}/.mapmenu
flags=(
# Key bindings
'+bind Alt +altattack'

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# check for required pk3.
source ${BASH_SOURCE[0]%/*}/TobyCustom/.dependencies
source ${BASH_SOURCE[0]%/*}/.dependencies
check_dependencies "${gamePath}/Project_Brutality-Latest.pk3" \
"https://www.moddb.com/mods/project-brutality" \
"This should be included by default." \
@ -23,7 +23,7 @@ elif [[ -e "${gamePath}/DoomMetalVol6.wad" ]]; then
gameOption+=("${gamePath}/DoomMetalVol6.wad")
fi
source ${BASH_SOURCE[0]%/*}/TobyCustom/.mapmenu
source ${BASH_SOURCE[0]%/*}/.mapmenu
flags=(
# Key bindings
'+bind Alt +altattack'

View File

@ -10,4 +10,4 @@ gameOption=(
"$gamePath/Addons/STARWARS/"*
)
source ${BASH_SOURCE[0]%/*}/TobyCustom/.mapmenu
source ${BASH_SOURCE[0]%/*}/.mapmenu

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# check for required pk3.
source ${BASH_SOURCE[0]%/*}/TobyCustom/.dependencies
source ${BASH_SOURCE[0]%/*}/.dependencies
check_dependencies "${gamePath}/Addons/WOLFENDOOM/orig_enh.pk3" \
"https://www.moddb.com/mods/wolfendoom/downloads/wolfendoom-enhanced" \
"mkdir -p ${gamePath}/Addons/WOLFENDOOM/" \