From bf1e3af3cedff77ee45c05d5a442d0fc78a1fd3f Mon Sep 17 00:00:00 2001 From: Nick Gammon Date: Sat, 9 May 2015 08:37:03 +1000 Subject: [PATCH] Fixed bug in bugfix ;) --- ProcessPreviousLine.cpp | 2 +- evaluate.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ProcessPreviousLine.cpp b/ProcessPreviousLine.cpp index 5c94e3dd..775e58dd 100644 --- a/ProcessPreviousLine.cpp +++ b/ProcessPreviousLine.cpp @@ -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) diff --git a/evaluate.cpp b/evaluate.cpp index 3e5a8221..de7a13fa 100644 --- a/evaluate.cpp +++ b/evaluate.cpp @@ -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)