Core/MMaps: Allow loading mmap meshes per map instance

This commit is contained in:
Shauren
2025-11-06 18:34:58 +01:00
parent f439120b1f
commit a9c752af97
8 changed files with 161 additions and 104 deletions

View File

@@ -290,6 +290,7 @@ void Map::EnsureGridCreated(GridCoord const& p)
int gy = (MAX_NUMBER_OF_GRIDS - 1) - p.y_coord;
m_terrain->LoadMapAndVMap(gx, gy);
m_terrain->LoadMMap(GetInstanceId(), gx, gy);
}
}