diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-05-09 12:26:36 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-05-09 12:26:36 +0200 |
commit | e2a60790924048323d16fbdb27e7199455561f55 (patch) | |
tree | 3eb87bdb80bc075605158784862b6989ab8e1f98 /FICS/adminproc.c | |
parent | 0498cb6b9fbf9d58008f2f6c3e9e6d62e9f54878 (diff) |
Reformatted com_quota()
Diffstat (limited to 'FICS/adminproc.c')
-rw-r--r-- | FICS/adminproc.c | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/FICS/adminproc.c b/FICS/adminproc.c index 7f538a9..2691984 100644 --- a/FICS/adminproc.c +++ b/FICS/adminproc.c @@ -1743,18 +1743,23 @@ PUBLIC int com_admin(int p, param_list param) * affects only those persons on the shout quota list. If no parameter * (n) is given, the current setting is displayed. */ -PUBLIC int com_quota(int p, param_list param) +PUBLIC int +com_quota(int p, param_list param) { - ASSERT(parray[p].adminLevel >= ADMIN_ADMIN); - if (param[0].type == TYPE_NULL) { - pprintf(p, "The current shout quota is 2 shouts per %d seconds.\n", quota_time); - return COM_OK; - } - quota_time = param[0].val.integer; - pprintf(p, "The shout quota is now 2 shouts per %d seconds.\n", quota_time); - return COM_OK; -} + ASSERT(parray[p].adminLevel >= ADMIN_ADMIN); + if (param[0].type == TYPE_NULL) { + pprintf(p, "The current shout quota is 2 shouts per %d " + "seconds.\n", quota_time); + return COM_OK; + } + + quota_time = param[0].val.integer; + + pprintf(p, "The shout quota is now 2 shouts per %d seconds.\n", + quota_time); + return COM_OK; +} /* * asetmaxplayer |