mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Hide metas with removed=false
This commit is contained in:
parent
39d8372a93
commit
c60c05bbf7
@ -248,7 +248,9 @@ public class StandardInstaller : AInstaller<StandardInstaller>
|
||||
try
|
||||
{
|
||||
var parsed = metaFile.LoadIniFile();
|
||||
if (parsed["General"] is not null && (parsed["General"]["removed"] is null || parsed[General][removed=false]))
|
||||
if (parsed["General"] is not null && (
|
||||
parsed["General"]["removed"] is null ||
|
||||
parsed["General"]["removed"].Equals(bool.FalseString, StringComparison.OrdinalIgnoreCase)))
|
||||
{
|
||||
// add removed=true to files not part of the Modlist so they don't show up in MO2
|
||||
parsed["General"]["removed"] = "true";
|
||||
|
Loading…
Reference in New Issue
Block a user