fix(Core/Travel): Re-add PathNodeType::NODE_TELEPORT now that BuildPath emits + handler consumes

This commit is contained in:
bash 2026-05-30 23:56:32 +02:00
parent b187031ed2
commit b446c5c3ac

View File

@ -439,8 +439,10 @@ enum class PathNodeType : uint8
NODE_AREA_TRIGGER = 3, NODE_AREA_TRIGGER = 3,
NODE_TRANSPORT = 4, NODE_TRANSPORT = 4,
NODE_FLIGHTPATH = 5, NODE_FLIGHTPATH = 5,
// value 6 (NODE_TELEPORT) reserved — no consumer; re-add when a // Teleport-spell endpoint (hearthstone, mage portal). Emitted by
// teleport-spell handler / generator returns. // TravelNodeRoute::BuildPath when traversing a teleportSpell-type
// edge; consumed by HandleSpecialMovement.
NODE_TELEPORT = 6,
NODE_STATIC_PORTAL = 7 NODE_STATIC_PORTAL = 7
}; };