mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Logiqx] Null case already handled
This commit is contained in:
@@ -308,15 +308,15 @@ namespace SabreTools.Library.DatFiles
|
|||||||
{
|
{
|
||||||
Header = (String.IsNullOrWhiteSpace(Header) ? headreader.GetAttribute("plugin") : Header);
|
Header = (String.IsNullOrWhiteSpace(Header) ? headreader.GetAttribute("plugin") : Header);
|
||||||
}
|
}
|
||||||
if (headreader.GetAttribute("forcemerging") != null && ForceMerging == ForceMerging.None)
|
if (ForceMerging == ForceMerging.None)
|
||||||
{
|
{
|
||||||
ForceMerging = Utilities.GetForceMerging(headreader.GetAttribute("forcemerging"));
|
ForceMerging = Utilities.GetForceMerging(headreader.GetAttribute("forcemerging"));
|
||||||
}
|
}
|
||||||
if (headreader.GetAttribute("forcenodump") != null && ForceNodump == ForceNodump.None)
|
if (ForceNodump == ForceNodump.None)
|
||||||
{
|
{
|
||||||
ForceNodump = Utilities.GetForceNodump(headreader.GetAttribute("forcenodump"));
|
ForceNodump = Utilities.GetForceNodump(headreader.GetAttribute("forcenodump"));
|
||||||
}
|
}
|
||||||
if (headreader.GetAttribute("forcepacking") != null && ForcePacking == ForcePacking.None)
|
if (ForcePacking == ForcePacking.None)
|
||||||
{
|
{
|
||||||
ForcePacking = Utilities.GetForcePacking(headreader.GetAttribute("forcepacking"));
|
ForcePacking = Utilities.GetForcePacking(headreader.GetAttribute("forcepacking"));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user