mirror of
https://github.com/eliasstepanik/ark-ac-server-tools.git
synced 2026-01-24 15:38:26 +00:00
Merge branch 'master' into 1.6-dev.unstable
This commit is contained in:
commit
8c90bbfb51
@ -458,7 +458,7 @@ Instance config files
|
|||||||
|
|
||||||
Instance config files are stored under
|
Instance config files are stored under
|
||||||
`/etc/arkmanager/instances/<instancename>.cfg`,
|
`/etc/arkmanager/instances/<instancename>.cfg`,
|
||||||
`~/.local/config/arkmanager/instances/<instancename>.cfg`
|
`~/.config/arkmanager/instances/<instancename>.cfg`
|
||||||
or as specified in the `configfile_<instancename>` options in
|
or as specified in the `configfile_<instancename>` options in
|
||||||
the global config.
|
the global config.
|
||||||
|
|
||||||
|
|||||||
@ -1533,6 +1533,10 @@ doDownloadMod(){
|
|||||||
#
|
#
|
||||||
doDownloadAllMods(){
|
doDownloadAllMods(){
|
||||||
for modid in $(getModIds); do
|
for modid in $(getModIds); do
|
||||||
|
# Bypass the 111111111 modid used by Primitive+
|
||||||
|
if [ "$modid" = "111111111" ]; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
doDownloadMod $modid || return 1
|
doDownloadMod $modid || return 1
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user