diff --git a/Changes b/Changes index 60a5b7be6..f10948313 100644 --- a/Changes +++ b/Changes @@ -497,3 +497,4 @@ seen. gmtime warning still there - Added code to make the config parser try and stay alive when an error is encountered - Added events code and converted some stuff to events - Converted htmcalc/lcf to events +- Fixed /stats L bug found by larne diff --git a/src/s_serv.c b/src/s_serv.c index 537332a28..23bb7841c 100644 --- a/src/s_serv.c +++ b/src/s_serv.c @@ -2493,7 +2493,7 @@ int m_stats(cptr, sptr, parc, parv) #else pbuf); #endif - if (!IsServer(acptr) && IsAnOper(acptr)) + if (!IsServer(acptr) && !IsMe(acptr) && IsAnOper(acptr)) sendto_one(acptr, ":%s NOTICE %s :*** %s did a /stats L on you! IP may have been shown", me.name, acptr->name, sptr->name);