mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
Fix bug #579, missing end of stats and snomask when module returns 1 from OnStats, thanks jackmcbarn
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10067 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
62a971acc2
commit
bc0d7a138d
@ -61,9 +61,14 @@ DllExport void DoStats(InspIRCd* ServerInstance, char statschar, User* user, str
|
||||
}
|
||||
|
||||
int MOD_RESULT = 0;
|
||||
FOREACH_RESULT(I_OnStats,OnStats(statschar,user,results));
|
||||
FOREACH_RESULT(I_OnStats,OnStats(statschar, user, results));
|
||||
if (MOD_RESULT)
|
||||
{
|
||||
results.push_back(sn+" 219 "+user->nick+" "+statschar+" :End of /STATS report");
|
||||
ServerInstance->SNO->WriteToSnoMask('t',"%s '%c' requested by %s (%s@%s)",
|
||||
(IS_LOCAL(user) ? "Stats" : "Remote stats"), statschar, user->nick.c_str(), user->ident.c_str(), user->host.c_str());
|
||||
return;
|
||||
}
|
||||
|
||||
switch (statschar)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user