diff --git a/src/d_iwad.cpp b/src/d_iwad.cpp index 5aa5f35b8..d263ba073 100644 --- a/src/d_iwad.cpp +++ b/src/d_iwad.cpp @@ -348,13 +348,6 @@ int FIWadManager::CheckIWADInfo(const char *fn) FIWADInfo result; ParseIWadInfo(resfile->Filename, (const char*)lmp->CacheLump(), lmp->LumpSize, &result); delete resfile; - for (auto &wadinf : mIWadInfos) - { - if (wadinf.Name == result.Name) - { - return -1; // do not show the same one twice. - } - } return mIWadInfos.Push(result); } catch (CRecoverableError &err)