UltimateByte
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
lgsm/functions/core_getopt.sh
|
|
@ -35,7 +35,8 @@ cmd_mods_update=( "mu;mods-update" "command_mods_update.sh" "Update installed mo |
|
|
|
# Server specific |
|
|
|
cmd_change_password=( "pw;change-password" "command_ts3_server_pass.sh" "Change TS3 serveradmin password." ) |
|
|
|
cmd_install_default_resources=( "ir;install-default-resources" "command_install_resources_mta.sh" "Install the MTA default resources." ) |
|
|
|
cmd_wipe=( "wi;wipe" "command_wipe.sh" "Wipe your server data." ) |
|
|
|
cmd_wipe=( "wi;wipe" "command_wipe.sh" "Wipe your main game server data." ) |
|
|
|
cmd_wipeall=( "fw;wipeall" "command_wipe.sh" "Wipe your game server data and blueprints." ) |
|
|
|
cmd_map_compressor_u99=( "mc;map-compressor" "compress_ut99_maps.sh" "Compresses all ${gamename} server maps." ) |
|
|
|
cmd_map_compressor_u2=( "mc;map-compressor" "compress_unreal2_maps.sh" "Compresses all ${gamename} server maps." ) |
|
|
|
cmd_install_cdkey=( "cd;server-cd-key" "install_ut2k4_key.sh" "Add your server cd key." ) |
|
|
@ -93,7 +94,7 @@ fi |
|
|
|
|
|
|
|
# Unreal exclusive |
|
|
|
if [ "${gamename}" == "Rust" ]; then |
|
|
|
currentopt+=( "${cmd_wipe[@]}" ) |
|
|
|
currentopt+=( "${cmd_wipe[@]}" "${cmd_wipeall[@]}" ) |
|
|
|
fi |
|
|
|
if [ "${engine}" == "unreal2" ]; then |
|
|
|
if [ "${gamename}" == "Unreal Tournament 2004" ]; then |
|
|
|