From 6f7214ba2a2a82f5505570f8b59dbb56b991a2a9 Mon Sep 17 00:00:00 2001 From: stskeeps Date: Tue, 15 May 2001 13:46:59 +0000 Subject: [PATCH] . --- Changes | 1 + src/s_serv.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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);