Skip to content

Commit

Permalink
Adjust infernal mob name colors
Browse files Browse the repository at this point in the history
I found the aqua used for the lowlevel infernal mob to be a bit hard to
read against the blue sky.

Before:
aqua -> yellow -> gold

After:
yellow -> gold -> red
  • Loading branch information
wlhlm committed Nov 26, 2024
1 parent e0bb7e9 commit af56071
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,10 @@ public String getEntityDisplayName(EntityLivingBase target) {
}

String prefix = size <= 5
? EnumChatFormatting.AQUA + StatCollector.translateToLocal("translation.infernalmobs:rareClass")
? EnumChatFormatting.YELLOW + StatCollector.translateToLocal("translation.infernalmobs:rareClass")
: size <= 10
? EnumChatFormatting.YELLOW + StatCollector.translateToLocal("translation.infernalmobs:ultraClass")
: EnumChatFormatting.GOLD
? EnumChatFormatting.GOLD + StatCollector.translateToLocal("translation.infernalmobs:ultraClass")
: EnumChatFormatting.RED
+ StatCollector.translateToLocal("translation.infernalmobs:infernalClass");

buffer = prefix + modprefix + buffer;
Expand Down

0 comments on commit af56071

Please sign in to comment.