Merge pull request #136 from diamante0018/develop

reverted to old if statement
This commit is contained in:
Maurice Heumann 2021-04-25 20:31:41 +02:00 committed by GitHub
commit 2386cb0ddb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -352,10 +352,12 @@ namespace command
//const auto entry = game::DB_FindXAssetEntry(type, asset_name);
//TODO: display which zone the asset is from
if (!filter.empty() && game_console::match_compare(filter, asset_name, false))
if (!filter.empty() && !game_console::match_compare(filter, asset_name, false))
{
console::info("%s\n", asset_name);
}
return;
}
console::info("%s\n", asset_name);
}, true);
}
});