mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-06 09:09:40 +02:00
Do not show entries without name
This commit is contained in:
@@ -105,7 +105,7 @@ bool CModEntry::isVisible() const
|
||||
return false;
|
||||
}
|
||||
|
||||
return !localData.isEmpty() || !repository.isEmpty();
|
||||
return (!localData.isEmpty() || !repository.isEmpty()) && !getValue("name").isNull();
|
||||
}
|
||||
|
||||
bool CModEntry::isTranslation() const
|
||||
|
||||
Reference in New Issue
Block a user