diff --git a/src/main.py b/src/main.py index d5adc15..f5f9bc6 100644 --- a/src/main.py +++ b/src/main.py @@ -28,7 +28,7 @@ def main(self): super_obf = all_.super_obf if any([args.file]): current_time = time.time() - Obfuscator(args.file, double_click_check=False, utf_16_bom=False) + Obfuscator(args.file, double_click_check=False, utf_16_bom=True) finish_time = time.time() print(f"It only took {finish_time - current_time} to finish!") return diff --git a/src/util/supporting/settings.py b/src/util/supporting/settings.py index ee1e8b1..6c80a5f 100644 --- a/src/util/supporting/settings.py +++ b/src/util/supporting/settings.py @@ -18,7 +18,7 @@ f.write( """{ "chinese": false, - "bloat": false, + "bloat": true, "remove_blank_lines": true, "super_obf": false, "double_click_check": false,