From f94e6f2f72ee3afa0908ed908850ff60e57532fc Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 6 Feb 2023 17:21:28 +0700 Subject: [PATCH] =?UTF-8?q?=D0=BC=D0=B4=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt b/src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt index 8b398363..562fc294 100644 --- a/src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt +++ b/src/main/kotlin/ru/dbotthepony/kstarbound/Starbound.kt @@ -389,7 +389,9 @@ class Starbound : ISBFileLocator { t: Object2ObjectOpenHashMap>, u: Object2ObjectOpenHashMap> ): Object2ObjectOpenHashMap> { - t.putAll(u) + for ((k, v) in u) + t.computeIfAbsent(k, Object2ObjectFunction { ArrayList() }).addAll(v) + return t }