- reverse allowduplicates check since it is a misnomer to what it actually did

This commit is contained in:
Rachael Alexanderson 2024-01-11 08:02:14 -05:00
parent 55d90a18dc
commit 64096658e5
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0

View file

@ -252,7 +252,7 @@ bool FileSystem::InitMultipleFiles (std::vector<std::string>& filenames, LumpFil
stringpool->shared = true; // will be used by all owned resource files.
// first, check for duplicates
if (allowduplicates)
if (!allowduplicates)
{
for (size_t i=0;i<filenames.size(); i++)
{