Hello,
in the file fn_details the variable 'pid' is missing in "fn_details_source()" .
Which leads to a false information return by "fn_details_statusbottom()" while running "./csgoserver details"
if I add :
pid=$(tmux list-sessions 2>&1 | awk '{print $1}' | grep -Ec "^${servicename}:")
just under "fn_details_source(){" line 374 it solved the issue.
I sent a pull request "Fix fn_details_statusbottom in fn_details_source() #527"
Hello,
in the file fn_details the variable 'pid' is missing in "fn_details_source()" .
Which leads to a false information return by "fn_details_statusbottom()" while running "./csgoserver details"
if I add :$1}' | grep -Ec "^$ {servicename}:")
pid=$(tmux list-sessions 2>&1 | awk '{print
just under "fn_details_source(){" line 374 it solved the issue.
I sent a pull request "Fix fn_details_statusbottom in fn_details_source() #527"