diff options
| author | DoKM <mcazzyman@gmail.com> | 2021-07-23 18:03:23 +0200 |
|---|---|---|
| committer | DoKM <mcazzyman@gmail.com> | 2021-07-23 18:03:23 +0200 |
| commit | c8f7b7119b5ced019b02faa46136f94716516f19 (patch) | |
| tree | 739d7465d603ec8221432fac0b132282aae32414 /src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java | |
| parent | b19c711aadd8b6e41b52226c4f43d7689b9cfaa4 (diff) | |
| download | notenoughupdates-c8f7b7119b5ced019b02faa46136f94716516f19.tar.gz notenoughupdates-c8f7b7119b5ced019b02faa46136f94716516f19.tar.bz2 notenoughupdates-c8f7b7119b5ced019b02faa46136f94716516f19.zip | |
Introduce alot of fixes from Ironm00n's pull request
not everything though
missing his cape (thats not for me to do)
and his version checker for PRE's
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java')
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java b/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java index 2a6160f1..9e3c863c 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NEUOverlay.java @@ -1044,6 +1044,7 @@ public class NEUOverlay extends Gui { EnumChatFormatting.BLUE+EnumChatFormatting.BOLD.toString()+"RARE", EnumChatFormatting.DARK_PURPLE+EnumChatFormatting.BOLD.toString()+"EPIC", EnumChatFormatting.GOLD+EnumChatFormatting.BOLD.toString()+"LEGENDARY", + EnumChatFormatting.LIGHT_PURPLE+EnumChatFormatting.BOLD.toString()+"MYTHIC", EnumChatFormatting.LIGHT_PURPLE+EnumChatFormatting.BOLD.toString()+"SPECIAL", }; @@ -1055,7 +1056,8 @@ public class NEUOverlay extends Gui { * 2 = RARE * 3 = EPIC * 4 = LEGENDARY - * 5 = SPECIAL + * 5 = MYTHIC + * 6 = SPECIAL */ public int getRarity(JsonArray lore) { for(int i=lore.size()-1; i>=0; i--) { |
