From e4d71f9dc926435f3ed6349c70a7ee15561b91f7 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 6 Sep 2022 18:39:01 -0600 Subject: [PATCH] Obfuscate W|A more --- main.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/main.py b/main.py index d9f023c..db77ffc 100755 --- a/main.py +++ b/main.py @@ -149,12 +149,19 @@ def think_send(query): elif len(result) == 0 and not img_url: result = 'Error' + result = result.replace('Wolfram|Alpha', 'Protovac') result = result.replace('Stephen Wolfram', 'Tanner') # lol result = result.replace('and his team', '') if '(according to' in result: result = result.split('(according to')[0] + if '(asked' in result: + result = result.split('(asked')[0] + + if '(although' in result: + result = result.split('(although')[0] + return result skip_input = False