From a3cbe517c3e1f952262e73beed11ad7a09f6f89a Mon Sep 17 00:00:00 2001 From: xanunderscore <149614526+xanunderscore@users.noreply.github.com> Date: Thu, 20 Feb 2025 19:09:42 -0500 Subject: [PATCH] central highlands customization --- .../Customizations/Z0155CoerthasCentralHighlands.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 vnavmesh/Customizations/Z0155CoerthasCentralHighlands.cs diff --git a/vnavmesh/Customizations/Z0155CoerthasCentralHighlands.cs b/vnavmesh/Customizations/Z0155CoerthasCentralHighlands.cs new file mode 100644 index 0000000..2c94690 --- /dev/null +++ b/vnavmesh/Customizations/Z0155CoerthasCentralHighlands.cs @@ -0,0 +1,13 @@ +namespace Navmesh.Customizations; + +[CustomizationTerritory(155)] +class Z0155CoerthasCentralHighlands : NavmeshCustomization +{ + public override int Version => 1; + + public Z0155CoerthasCentralHighlands() + { + // the second staircase inside the building in Whitebrim Front is not actually connected directly to the landing, but can be walked on regardless + Settings.AgentMaxClimb = 0.75f; + } +}