Fix typo in edge map generation code. This should just make it more optimal by not not adding vertices multiple times to a single edge vertex map.

This commit is contained in:
Relintai 2021-12-31 14:39:17 +01:00
parent 8a2da58680
commit 57a58a58ab
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ static func get_handle_edge_to_vertex_map(arrays : Array) -> Array:
break
if !found:
vm.append_array(vm1)
vm.append(vi)
handle_to_vertex_map.append(vm)