Browse Source

Add game_type to info_messages.sh

CS:GO has game_type and game_mode for example.
pull/2039/head
Attila 7 years ago
committed by GitHub
parent
commit
c8d995b9e3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      lgsm/functions/info_messages.sh

7
lgsm/functions/info_messages.sh

@ -222,6 +222,11 @@ fn_info_message_gameserver(){
echo -e "${blue}Default Map:\t${default}${defaultmap}"
fi
# Game type
if [ -n "${gametype}" ]; then
echo -e "${blue}Game type:\t${default}${gametype}"
fi
# Game mode
if [ -n "${gamemode}" ]; then
echo -e "${blue}Game mode:\t${default}${gamemode}"
@ -1235,4 +1240,4 @@ fn_info_message_password_strip(){
fi
fi
}
}

Loading…
Cancel
Save