diff --git a/src/Game/Functions.cpp b/src/Game/Functions.cpp index a7c63073..47b8f97e 100644 --- a/src/Game/Functions.cpp +++ b/src/Game/Functions.cpp @@ -418,6 +418,12 @@ namespace Game XAssetType type = static_cast(i); if (!_stricmp(DB_GetXAssetTypeName(type), name)) { + // Col map workaround! + if (type == Game::XAssetType::ASSET_TYPE_COL_MAP_SP) + { + return Game::XAssetType::ASSET_TYPE_COL_MAP_MP; + } + return type; } }