Skip to content

Commit

Permalink
Fixed bug in bugfix ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed May 8, 2015
1 parent 94e2428 commit bf1e3af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ProcessPreviousLine.cpp
Expand Up @@ -641,7 +641,7 @@ assemble the full text of the original line.
++pit)
{
// skip past negative sequence numbers
if ((*pit)->m_iSequence > 0)
if ((*pit)->m_iSequence < 0)
continue;
m_CurrentPlugin = *pit;
// allow trigger evaluation for the moment (ie. the next plugin)
Expand Down
2 changes: 1 addition & 1 deletion evaluate.cpp
Expand Up @@ -110,7 +110,7 @@ CAliasList AliasList;
++pit)
{
// skip past negative sequence numbers
if ((*pit)->m_iSequence > 0)
if ((*pit)->m_iSequence < 0)
continue;
m_CurrentPlugin = *pit;
if (m_CurrentPlugin->m_bEnabled)
Expand Down

0 comments on commit bf1e3af

Please sign in to comment.