From 5abab18a86737dac1577fb07f67562a36a45433e Mon Sep 17 00:00:00 2001 From: Sara Date: Mon, 5 Aug 2024 12:08:55 +0200 Subject: [PATCH] fix: get_editor_neighbours now actually gets editor neighbours --- src/nav_room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nav_room.cpp b/src/nav_room.cpp index 1409b91..811729a 100644 --- a/src/nav_room.cpp +++ b/src/nav_room.cpp @@ -47,7 +47,7 @@ gd::Vector const &NavRoom::get_markers() const { gd::Array NavRoom::get_editor_neighbours() const { gd::Array a{}; for(NavRoom *room : this->neighbours) - a.push_back(a); + a.push_back(room); return a; }