Fix regression where /ping command did not return the specified user's ping
This commit is contained in:
parent
ca61400e5d
commit
325ae8a183
1 changed files with 1 additions and 1 deletions
|
@ -4825,7 +4825,7 @@ namespace pvpgn
|
|||
msgtemp = localize(c, "Your latency {}", conn_get_latency(c));
|
||||
}
|
||||
else if ((user = connlist_find_connection_by_accountname(text)))
|
||||
msgtemp = localize(c, "{} latency ()", text, conn_get_latency(user));
|
||||
msgtemp = localize(c, "{} latency {}", text, conn_get_latency(user));
|
||||
else
|
||||
{
|
||||
msgtemp = localize(c, "Invalid user.");
|
||||
|
|
Loading…
Add table
Reference in a new issue