(Fix) Chancing base space when empty
This commit is contained in:
parent
ec4a7f6bd7
commit
ea96f670cd
|
@ -84,7 +84,7 @@ namespace PoE_MxFilterGen
|
|||
}
|
||||
}
|
||||
|
||||
if (iB == null) { iB = @""""""; }
|
||||
if (iB == null) { iB = @" """""; }
|
||||
string fn = @"gen\" + section + ".filter";
|
||||
File.AppendAllText(fn, string.Format("# Section: {0}", section) + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, "" + Environment.NewLine, Encoding.UTF8);
|
||||
|
|
|
@ -85,7 +85,7 @@ namespace PoE_MxFilterGen
|
|||
}
|
||||
}
|
||||
|
||||
if (iB == null) { iB = @""""""; }
|
||||
if (iB == null) { iB = @" """""; }
|
||||
string fn = @"gen\" + section + ".filter";
|
||||
File.AppendAllText(fn, string.Format("# Section: {0}", section) + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, "" + Environment.NewLine, Encoding.UTF8);
|
||||
|
|
|
@ -85,7 +85,7 @@ namespace PoE_MxFilterGen
|
|||
}
|
||||
}
|
||||
|
||||
if (iB == null) { iB = @""""""; }
|
||||
if (iB == null) { iB = @" """""; }
|
||||
string fn = @"gen\" + section + ".filter";
|
||||
File.AppendAllText(fn, string.Format("# Section: {0}", section) + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, "" + Environment.NewLine, Encoding.UTF8);
|
||||
|
|
|
@ -85,7 +85,7 @@ namespace PoE_MxFilterGen
|
|||
}
|
||||
}
|
||||
|
||||
if (iB == null) { iB = @""""""; }
|
||||
if (iB == null) { iB = @" """""; }
|
||||
string fn = @"gen\" + section + ".filter";
|
||||
File.AppendAllText(fn, string.Format("# Section: {0}", section) + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, "" + Environment.NewLine, Encoding.UTF8);
|
||||
|
|
|
@ -85,7 +85,7 @@ namespace PoE_MxFilterGen
|
|||
}
|
||||
}
|
||||
|
||||
if (iB == null) { iB = @""""""; }
|
||||
if (iB == null) { iB = @" """""; }
|
||||
string fn = @"gen\" + section + ".filter";
|
||||
File.AppendAllText(fn, string.Format("# Section: {0}", section) + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, "" + Environment.NewLine, Encoding.UTF8);
|
||||
|
|
|
@ -85,7 +85,7 @@ namespace PoE_MxFilterGen
|
|||
}
|
||||
}
|
||||
|
||||
if (iB == null) { iB = @""""""; }
|
||||
if (iB == null) { iB = @" """""; }
|
||||
string fn = @"gen\" + section + ".filter";
|
||||
File.AppendAllText(fn, string.Format("# Section: {0}", section) + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, "" + Environment.NewLine, Encoding.UTF8);
|
||||
|
|
|
@ -85,7 +85,7 @@ namespace PoE_MxFilterGen
|
|||
}
|
||||
}
|
||||
|
||||
if (iB == null) { iB = @""""""; }
|
||||
if (iB == null) { iB = @" """""; }
|
||||
string fn = @"gen\" + section + ".filter";
|
||||
File.AppendAllText(fn, string.Format("# Section: {0}", section) + Environment.NewLine, Encoding.UTF8);
|
||||
File.AppendAllText(fn, "" + Environment.NewLine, Encoding.UTF8);
|
||||
|
|
Loading…
Reference in New Issue