Fix warnings in Content.Tools module (#17862)

This commit is contained in:
TemporalOroboros
2023-07-10 00:39:21 -07:00
committed by GitHub
parent 4cc771f539
commit 7ec8bea20f
4 changed files with 32 additions and 31 deletions

View File

@@ -14,7 +14,7 @@ namespace Content.Tools
var based = new Map(args[1]); // On what?
var other = new Map(args[2]);
if ((ours.GridsNode.Children.Count != 1) || (based.GridsNode.Children.Count != 1) || (other.GridsNode.Children.Count != 1))
if (ours.GridsNode.Children.Count != 1 || based.GridsNode.Children.Count != 1 || other.GridsNode.Children.Count != 1)
{
Console.WriteLine("one or more files had an amount of grids not equal to 1");
Environment.Exit(1);