From 0c87af7d6b71233c46e81008239d977502f370f0 Mon Sep 17 00:00:00 2001 From: KimLS Date: Fri, 18 Oct 2024 17:32:55 -0700 Subject: [PATCH] Decompress wont default to false --- .../stream_parser/stream_parser/ConsoleHostedServiceOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/stream_parser/stream_parser/ConsoleHostedServiceOptions.cs b/utils/stream_parser/stream_parser/ConsoleHostedServiceOptions.cs index d744e549d..749d20922 100644 --- a/utils/stream_parser/stream_parser/ConsoleHostedServiceOptions.cs +++ b/utils/stream_parser/stream_parser/ConsoleHostedServiceOptions.cs @@ -20,7 +20,7 @@ namespace StreamParser [Option("decrypt", Default = false, HelpText = "Decrypt the \"Encrypted\" packets.")] public bool Decrypt { get; set; } - [Option("decompress", Default = false, HelpText = "Which opcodes to attempt to decompress")] + [Option("decompress", Default = null, HelpText = "Which opcodes to attempt to decompress")] public IEnumerable DecompressOpcodes { get; set; } } }