Decompress wont default to false

This commit is contained in:
KimLS 2024-10-18 17:32:55 -07:00
parent 2e087cde5b
commit 0c87af7d6b

View File

@ -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<int> DecompressOpcodes { get; set; }
}
}