Manager to Mgr

This commit is contained in:
VG-prog 2025-09-23 16:21:44 +02:00
parent bb18ac07df
commit f0e28838dc

View File

@ -1190,7 +1190,7 @@ float Map::GetHeightAccurate(float x, float y, float z, float radius, bool check
float vmapHeight = VMAP_INVALID_HEIGHT_VALUE;
if (checkVMap)
{
VMAP::IVMapManager* vmgr = VMAP::VMapFactory::createOrGetVMapManager();
VMAP::IVMapMgr* vmgr = VMAP::VMapFactory::createOrGetVMapMgr();
vmapHeight = vmgr->getHeight(GetId(), x, y, z, maxSearchDist); // VMAP: same criterion as GetHeight
}