mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-17 12:03:07 +01:00
Do not log 0 conflicts
This commit is contained in:
@@ -394,7 +394,10 @@ private:
|
||||
numConflicts++;
|
||||
}
|
||||
}
|
||||
Console::Error::WriteLine("%zu object conflicts found.", numConflicts);
|
||||
if (numConflicts > 0)
|
||||
{
|
||||
Console::Error::WriteLine("%zu object conflicts found.", numConflicts);
|
||||
}
|
||||
}
|
||||
|
||||
bool AddItem(const ObjectRepositoryItem &item)
|
||||
|
||||
Reference in New Issue
Block a user