Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hannibal002 committed Oct 16, 2024
1 parent aaaa020 commit 068e021
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object ItemStars {
*/
private val starPattern by repoGroup.pattern(
"stars",
"^(?<name>.+) (?<stars>(?:(?:§.)?✪)+)"
"^(?<name>.+) (?<stars>(?:(?:§.)?✪)+)",
)

@SubscribeEvent(priority = EventPriority.LOW)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -730,12 +730,9 @@ object EstimatedItemValueCalculator {
val map = mutableMapOf<String, Double>()

// todo use repo
val tieredEnchants =
listOf("compact", "cultivating", "champion", "expertise", "hecatomb", "toxophilite")
val onlyTierOnePrices =
listOf("ultimate_chimera", "ultimate_fatal_tempo", "smoldering", "ultimate_flash", "divine_gift")
val onlyTierFivePrices =
listOf("ferocious_mana", "hardened_mana", "mana_vampire", "strong_mana")
val tieredEnchants = listOf("compact", "cultivating", "champion", "expertise", "hecatomb", "toxophilite")
val onlyTierOnePrices = listOf("ultimate_chimera", "ultimate_fatal_tempo", "smoldering", "ultimate_flash", "divine_gift")
val onlyTierFivePrices = listOf("ferocious_mana", "hardened_mana", "mana_vampire", "strong_mana")

val internalName = stack.getInternalName()
for ((rawName, rawLevel) in enchantments) {
Expand Down

0 comments on commit 068e021

Please sign in to comment.