From 52b7e2b80e0e7318916886c05eb2ec3a0d069393 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Thu, 11 May 2023 12:41:23 +0700 Subject: [PATCH] this is not functional atm, so lets disable this completely --- .../ru/dbotthepony/mc/otm/graph/storage/StorageGraph.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/graph/storage/StorageGraph.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/graph/storage/StorageGraph.kt index 4e06a4d53..b85b66ea0 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/graph/storage/StorageGraph.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/graph/storage/StorageGraph.kt @@ -46,11 +46,11 @@ class StorageGraph : Abstract6Graph() { } override fun onNodeAdded(node: StorageNode) { - node.attachComponents(this) + //node.attachComponents(this) } override fun onNodeRemoved(node: StorageNode) { - node.removeComponents(this) + //node.removeComponents(this) } }