Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hannibal002 committed Oct 16, 2024
1 parent 3a35c5f commit a484c5f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ object EstimatedItemValueCalculator {

private val config get() = SkyHanniMod.feature.inventory.estimatedItemValues

// TODO move into KuudraAPI
private val kuudraSets = listOf("AURORA", "CRIMSON", "TERROR", "HOLLOW", "FERVOR")

var starChange = 0
Expand Down Expand Up @@ -136,8 +137,7 @@ object EstimatedItemValueCalculator {
return Pair(totalPrice, basePrice)
}

fun isKuudraSet(internalName: String) = internalName.asInternalName().isKuudraArmor(
)
fun isKuudraSet(internalName: String) = internalName.asInternalName().isKuudraArmor()

private fun addAttributeCost(stack: ItemStack, list: MutableList<String>): Double {
val attributes = stack.getAttributes() ?: return 0.0
Expand Down

0 comments on commit a484c5f

Please sign in to comment.