Skip to content

Commit

Permalink
Fixed bug in SendToAllPluginCallbacks
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Oct 23, 2010
1 parent ce59241 commit d695a3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins.cpp
Expand Up @@ -1552,7 +1552,7 @@ bool CMUSHclientDoc::SendToAllPluginCallbacks (const string & sName,
if (bStopOnTrue)
return false;
else
return !bStopOnFalse; // if they wanted to stop on true, assume false and vice-versa
return true; // if they wanted to stop on true, assume false and vice-versa

} // end of CMUSHclientDoc::SendToAllPluginCallbacks

Expand Down Expand Up @@ -1593,6 +1593,6 @@ bool CMUSHclientDoc::SendToAllPluginCallbacks (const string & sName,
if (bStopOnTrue)
return false;
else
return !bStopOnFalse; // if they wanted to stop on true, assume false and vice-versa
return true; // if they wanted to stop on true, assume false and vice-versa

} // end of CMUSHclientDoc::SendToAllPluginCallbacks

0 comments on commit d695a3e

Please sign in to comment.