m_stats: don't ratelimit with no server argument

This commit is contained in:
Ed Kellett 2019-08-02 21:56:10 +01:00
parent 2f2a26fe9d
commit e902e16974
No known key found for this signature in database
GPG key ID: CB9986DEF342FABC

View file

@ -212,7 +212,7 @@ m_stats(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
statchar = parv[1][0];
if(MyClient(source_p) && !IsOper(source_p))
if(MyClient(source_p) && !IsOper(source_p) && parc > 2)
{
/* Check the user is actually allowed to do /stats, and isnt flooding */
if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
@ -228,7 +228,7 @@ m_stats(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
last_used = rb_current_time();
}
if(hunt_server (client_p, source_p, ":%s STATS %s :%s", 2, parc, parv) != HUNTED_ISME)
if(hunt_server(client_p, source_p, ":%s STATS %s :%s", 2, parc, parv) != HUNTED_ISME)
return;
if(tolower(statchar) != 'l')