Browse Source
feat: add new port command for bfv game
Added a new port command for the "bfv" game in the info_messages script.
pull/4510/head
Daniel Gibbs
1 year ago
No known key found for this signature in database
GPG Key ID: 2076B128385E8C55
1 changed files with
2 additions and
0 deletions
-
lgsm/modules/info_messages.sh
|
@ -692,6 +692,8 @@ fn_info_messages_ports() { |
|
|
portcommand="ss -tuplwn | grep AvorionServer" |
|
|
portcommand="ss -tuplwn | grep AvorionServer" |
|
|
elif [ "${shortname}" == "bf1942" ]; then |
|
|
elif [ "${shortname}" == "bf1942" ]; then |
|
|
portcommand="ss -tuplwn | grep bf1942_lnxded" |
|
|
portcommand="ss -tuplwn | grep bf1942_lnxded" |
|
|
|
|
|
elif [ "${shortname}" == "bfv" ]; then |
|
|
|
|
|
portcommand="ss -tuplwn | grep bfv_linded" |
|
|
elif [ "${shortname}" == "dayz" ]; then |
|
|
elif [ "${shortname}" == "dayz" ]; then |
|
|
portcommand="ss -tuplwn | grep enfMain" |
|
|
portcommand="ss -tuplwn | grep enfMain" |
|
|
elif [ "${shortname}" == "q4" ]; then |
|
|
elif [ "${shortname}" == "q4" ]; then |
|
|