Patch navigation map async synchronization

Patches navigation map async synchronization.
This commit is contained in:
smix8
2024-12-26 04:50:33 +01:00
parent 0f95e9f8e6
commit c69408168c
12 changed files with 411 additions and 413 deletions
+5 -3
View File
@@ -129,8 +129,10 @@ void NavLink::get_iteration_update(NavLinkIteration &r_iteration) {
r_iteration.travel_cost = get_travel_cost();
r_iteration.owner_object_id = get_owner_id();
r_iteration.owner_type = get_type();
r_iteration.owner_rid = get_self();
r_iteration.enabled = enabled;
r_iteration.start_position = start_position;
r_iteration.end_position = end_position;
r_iteration.enabled = get_enabled();
r_iteration.start_position = get_start_position();
r_iteration.end_position = get_end_position();
r_iteration.bidirectional = is_bidirectional();
}