1
0
Fork 0
forked from fte/fteqw

Standardised formatting.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1716 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-12-16 17:12:57 +00:00
parent 12bef1befc
commit 1a861e52ed

View file

@ -1334,11 +1334,13 @@ void SV_Floodprot_f (void)
if (Cmd_Argc() == 1) if (Cmd_Argc() == 1)
{ {
if (fp_messages) { if (fp_messages)
{
Con_TPrintf (STL_FLOODPROTSETTINGS, Con_TPrintf (STL_FLOODPROTSETTINGS,
fp_messages, fp_persecond, fp_secondsdead); fp_messages, fp_persecond, fp_secondsdead);
return; return;
} else }
else
Con_TPrintf (STL_FLOODPROTNOTON); Con_TPrintf (STL_FLOODPROTNOTON);
} }
@ -1352,12 +1354,14 @@ void SV_Floodprot_f (void)
arg2 = atoi(Cmd_Argv(2)); arg2 = atoi(Cmd_Argv(2));
arg3 = atoi(Cmd_Argv(3)); arg3 = atoi(Cmd_Argv(3));
if (arg1<=0 || arg2 <= 0 || arg3<=0) { if (arg1<=0 || arg2 <= 0 || arg3<=0)
{
Con_TPrintf (STL_NONEGATIVEVALUES); Con_TPrintf (STL_NONEGATIVEVALUES);
return; return;
} }
if (arg1 > 10) { if (arg1 > 10)
{
Con_TPrintf (STL_TRACK10PLUSSMESSAGES); Con_TPrintf (STL_TRACK10PLUSSMESSAGES);
return; return;
} }
@ -1369,10 +1373,13 @@ void SV_Floodprot_f (void)
void SV_Floodprotmsg_f (void) void SV_Floodprotmsg_f (void)
{ {
if (Cmd_Argc() == 1) { if (Cmd_Argc() == 1)
{
Con_TPrintf(STL_FLOODPROTCURRENTMESSAGE, fp_msg); Con_TPrintf(STL_FLOODPROTCURRENTMESSAGE, fp_msg);
return; return;
} else if (Cmd_Argc() != 2) { }
else if (Cmd_Argc() != 2)
{
Con_TPrintf(STL_FLOODPROTMESSAGESYNTAX); Con_TPrintf(STL_FLOODPROTMESSAGESYNTAX);
return; return;
} }