From 2d1c9184f49c773a2beea6f3e0ec1ee4db465022 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sat, 29 Mar 2025 13:37:27 +0700 Subject: [PATCH] Fix platform declaration clash --- .../ru/dbotthepony/mc/otm/recipe/MatterEntanglerRecipe.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/recipe/MatterEntanglerRecipe.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/recipe/MatterEntanglerRecipe.kt index bbb540040..64e322653 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/recipe/MatterEntanglerRecipe.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/recipe/MatterEntanglerRecipe.kt @@ -89,12 +89,12 @@ open class MatterEntanglerRecipe( return ingredients.ingredients() } - private val isIncomplete by lazy(LazyThreadSafetyMode.PUBLICATION) { + private val _isIncomplete by lazy(LazyThreadSafetyMode.PUBLICATION) { result.isEmpty || ingredients.isIncomplete } override fun isIncomplete(): Boolean { - return isIncomplete + return _isIncomplete } override fun isSpecial(): Boolean {