Merge commit '7c714dfbd3c917247c9c9346799bb3fa1b9dee16'

This commit is contained in:
Darth Vader 2024-07-11 17:09:41 +00:00
commit 4c58a0f6b7

View File

@ -1897,7 +1897,8 @@ namespace Utilities
for (it = b.begin(); it != b.end(); ++it)
{
// Adding logic to dump only non-negative entities
if (it->second.Get_n_user() >= 0)
//if (it->second.Get_n_user() >= 0)
if (it->first >= 0 && it->second.Get_n_user() >= 0)
{
it->second.dump_raw(s_oss, indent);
}