Fix platform declaration clash

This commit is contained in:
DBotThePony 2025-03-29 13:37:27 +07:00
parent c93fa7bb7a
commit 2d1c9184f4
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -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 {