Browse Source
Merge pull request #2039 from borzaka/patch-2
Add game_type to info_messages.sh
pull/2044/head
Daniel Gibbs
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
1 deletions
-
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}" |
|
|
@ -1249,4 +1254,4 @@ fn_info_message_password_strip(){ |
|
|
|
fi |
|
|
|
|
|
|
|
fi |
|
|
|
} |
|
|
|
} |
|
|
|