mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Tools/MMaps: Fix strange paths in Blackfathom Deeps
Increase the agent height by x2 to reduce the chance of having underground mmap layers wrongly picked by recast.
(cherry picked from commit 3b0a89a2ea)
This commit is contained in:
@@ -997,8 +997,14 @@ namespace MMAP
|
||||
{
|
||||
// Blade's Edge Arena
|
||||
case 562:
|
||||
// This allows to walk on the ropes to the pillars
|
||||
config.walkableRadius = 0;
|
||||
break;
|
||||
// Blackfathom Deeps
|
||||
case 48:
|
||||
// Reduce the chance to have underground levels
|
||||
config.ch *= 2;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user