diff options
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hooks/CaptchaTrader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/CaptchaTrader.py b/module/plugins/hooks/CaptchaTrader.py index f98b5fab0..de5831731 100644 --- a/module/plugins/hooks/CaptchaTrader.py +++ b/module/plugins/hooks/CaptchaTrader.py @@ -104,7 +104,7 @@ class CaptchaTrader(Hook): if not self.getConfig("username") or not self.getConfig("passkey"): return False - if not (self.core.isClientConnected() and self.getConfig("force")): + if self.core.isClientConnected() and not self.getConfig("force"): return False if self.getCredits() > 10: |