From f22e67a07cdfd55ee0c220d3749892d4efb251fc Mon Sep 17 00:00:00 2001 From: Relintai Date: Thu, 28 Jul 2022 11:01:41 +0200 Subject: [PATCH] Fix typo. --- modules/rtile_map/tile_set_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rtile_map/tile_set_editor_plugin.cpp b/modules/rtile_map/tile_set_editor_plugin.cpp index 6eeab30bd..227622b31 100644 --- a/modules/rtile_map/tile_set_editor_plugin.cpp +++ b/modules/rtile_map/tile_set_editor_plugin.cpp @@ -3111,7 +3111,7 @@ void RTileSetEditor::select_coord(const Vector2 &coord) { for (int outline_idx = 0; outline_idx < edited_navigation_shape->get_outline_count(); outline_idx++) { PoolVector outline_vertices = edited_navigation_shape->get_outline(outline_idx); for (int vertex_inx = 0; vertex_inx < outline_vertices.size(); vertex_inx++) { - current_shape.push_back(outline_vertices[vertex_inx] + shape_anchor)::; + current_shape.push_back(outline_vertices[vertex_inx] + shape_anchor); } } }