mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-01-22 07:51:20 +00:00
%d -> %f in netdosvalues/netdosexpire
This commit is contained in:
parent
dc0337a885
commit
9a2ec3c094
1 changed files with 2 additions and 2 deletions
|
@ -1179,7 +1179,7 @@ void SV_netDoSexpire_f (void)
|
|||
if (Cmd_Argc() == 1)
|
||||
{
|
||||
Con_Printf ("Current DoS prot. expire settings: ");
|
||||
for (i=0;i<DOSFLOODCMDS;i++) Con_Printf("%d ",netdosexpire[i]);
|
||||
for (i=0;i<DOSFLOODCMDS;i++) Con_Printf("%f ",netdosexpire[i]);
|
||||
Con_Printf("\n");
|
||||
if (!sv_netdosprotect->value) Con_Printf("(disabled)\n");
|
||||
return;
|
||||
|
@ -1211,7 +1211,7 @@ void SV_netDoSvalues_f (void)
|
|||
if (Cmd_Argc() == 1)
|
||||
{
|
||||
Con_Printf ("Current DoS prot. value settings: ");
|
||||
for (i=0;i<DOSFLOODCMDS;i++) Con_Printf("%d ",netdosvalues[i]);
|
||||
for (i=0;i<DOSFLOODCMDS;i++) Con_Printf("%f ",netdosvalues[i]);
|
||||
Con_Printf("\n");
|
||||
if (!sv_netdosprotect->value) Con_Printf("(disabled)\n");
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue