Since /reload reloads everything, we can cache isIncomplete

This commit is contained in:
DBotThePony 2025-03-29 13:34:43 +07:00
parent 571c7bc339
commit 4db52b83c4
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -89,8 +89,12 @@ open class MatterEntanglerRecipe(
return ingredients.ingredients()
}
private val isIncomplete by lazy(LazyThreadSafetyMode.PUBLICATION) {
result.isEmpty || ingredients.isIncomplete
}
override fun isIncomplete(): Boolean {
return result.isEmpty || ingredients.isIncomplete
return isIncomplete
}
override fun isSpecial(): Boolean {