From c2bca83735864e5223d6c033e3bb6dce82ee7764 Mon Sep 17 00:00:00 2001 From: Chaoscaot Date: Tue, 25 Nov 2025 18:37:58 +0100 Subject: [PATCH] Fix Tab Complete Signed-off-by: Chaoscaot --- CommonCore/SQL/src/de/steamwar/sql/SchematicNode.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonCore/SQL/src/de/steamwar/sql/SchematicNode.kt b/CommonCore/SQL/src/de/steamwar/sql/SchematicNode.kt index e7f01cbd..7117a4b0 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/SchematicNode.kt +++ b/CommonCore/SQL/src/de/steamwar/sql/SchematicNode.kt @@ -279,7 +279,7 @@ class SchematicNode(id: EntityID) : IntEntity(id) { } val index = s.lastIndexOf("/") val cacheKey = if (index == -1) "" else s.take(index) - tabCache[user.getId()]?.get(cacheKey)?.also { return it } + tabCache[user.getId()]?.get(cacheKey)?.also { return it.toMutableList() } val list = mutableListOf() if (s.contains("/")) {