Browse Source

ut4 and others

pull/3428/head
Daniel Gibbs 4 years ago
parent
commit
74e004f332
  1. 11
      lgsm/functions/info_messages.sh
  2. 1
      lgsm/functions/info_parms.sh

11
lgsm/functions/info_messages.sh

@ -1374,23 +1374,24 @@ fn_info_message_unreal3(){
fn_info_message_unturned(){ fn_info_message_unturned(){
{ {
fn_port "header" fn_port "header"
echo -e "> Game\t${port}\tudp" fn_port "Game" port udp
echo -e "> Query\t${queryport}\tudp" fn_port "Query" queryport udp
} | column -s $'\t' -t } | column -s $'\t' -t
} }
fn_info_message_ut(){ fn_info_message_ut(){
{ {
fn_port "header" fn_port "header"
echo -e "> Game\t${port}\tudp" fn_port "Game" port udp
fn_port "Query" queryport udp
} | column -s $'\t' -t } | column -s $'\t' -t
} }
fn_info_message_vh(){ fn_info_message_vh(){
{ {
fn_port "header" fn_port "header"
echo -e "> Game\t${port}\tudp" fn_port "Game" port udp
echo -e "> Query\t${queryport}\tudp" fn_port "Query" queryport udp
} | column -s $'\t' -t } | column -s $'\t' -t
} }

1
lgsm/functions/info_parms.sh

@ -257,6 +257,7 @@ fn_info_parms_unturned(){
fn_info_parms_ut(){ fn_info_parms_ut(){
port=${port:-"0"} port=${port:-"0"}
queryport=$((port+1))
} }
fn_info_parms_vh(){ fn_info_parms_vh(){

Loading…
Cancel
Save