diff options
Diffstat (limited to 'src/T2DLL/T2Settlement.cpp')
-rw-r--r-- | src/T2DLL/T2Settlement.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/T2DLL/T2Settlement.cpp b/src/T2DLL/T2Settlement.cpp index 44de3d1..f67216e 100644 --- a/src/T2DLL/T2Settlement.cpp +++ b/src/T2DLL/T2Settlement.cpp @@ -142,7 +142,7 @@ void T2Settlement::EmitPayToolMessage(T2TowerDoc* towerDoc, T2ToolDef* inToolDef if (length && type) { T2DateTime *theTimeLimit = GetTimeLimitOfMessage(towerDoc, inToolDef, type); - if (theTimeLimit && *theNow >= *theTimeLimit) + if (theTimeLimit && *theNow <= *theTimeLimit) canPay = false; } |