From 3fa6e4d020533a70dc859abd1d52d8a44b002f04 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Mon, 19 Dec 2022 23:36:41 +0200 Subject: [PATCH] fix --- files/helpers/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/helpers/actions.py b/files/helpers/actions.py index 90976cd16d..3d092af681 100644 --- a/files/helpers/actions.py +++ b/files/helpers/actions.py @@ -395,7 +395,7 @@ def execute_blackjack(v, target, body, type): if blackjack and any(i in body.lower() for i in blackjack.split()): execute = True shadowban = True - elif blackjack2 and any(i in body.lower() for i in blackjack2.split()): + elif blackjack2 and all(i in body.lower() for i in blackjack2.split()): execute = True shadowban = v.truescore < 100