aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com>2022-08-20 09:21:21 +1000
committerGitHub <noreply@github.com>2022-08-20 09:21:21 +1000
commit445d0c69f3eb384aba032e3cf0e379bb53ea61df (patch)
tree77bc5c7ebb1af4a2fb090e5f251e95d5d6ff3b0f
parentb2d35428ac089ac104a2ea8212d8332c27a6cbee (diff)
downloadNotEnoughUpdates-445d0c69f3eb384aba032e3cf0e379bb53ea61df.tar.gz
NotEnoughUpdates-445d0c69f3eb384aba032e3cf0e379bb53ea61df.tar.bz2
NotEnoughUpdates-445d0c69f3eb384aba032e3cf0e379bb53ea61df.zip
Make be level show without island selected (#228)
Co-authored-by: jani270 <jani270@gmx.de>
-rw-r--r--Update Notes/2.1.md14
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java4
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/updater/AutoUpdater.java4
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/profileviewer/bestiary/BestiaryPage.java14
4 files changed, 20 insertions, 16 deletions
diff --git a/Update Notes/2.1.md b/Update Notes/2.1.md
index 774ce075..90ebbf87 100644
--- a/Update Notes/2.1.md
+++ b/Update Notes/2.1.md
@@ -16,7 +16,7 @@
- Added wishing compass solver that shows target coordinates, structure, and integrates with Skytils waypoints - CraftyOldMiner
- Improved metal detector logic to solve using a single position in most cases using known locations based on Keeper coordinates - CraftyOldMiner
- Added support for official Hypixel wiki, can be toggled in /neu misc - DeDiamondPro
-- Added a calculator (/neucalc help), that also works in the auction house / bazaar - nea89o
+- Added a calculator (/neucalc help), that also works in the auction house / bazaar - nea89
- Added and fixed various things in the profile viewer:
- [Added hotm tab](https://media.discordapp.net/attachments/659613194066722833/991115131507441724/unknown.png) - nopo
- Big thanks to kwev1n for some math and jani for the texture
@@ -27,7 +27,7 @@
- Added equipment - nopo
- Added blaze slayer level and kills - nopo
- Added social level - nopo
- - Added various new collections and minions - nopo
+ - Added various new collections and minions - nopo & CrypticPlasma & hannibal2
- Added mastermode catacombs xp to level calculator - nopo
- Added profile viewer settings to /neu - nopo
- Added an unknown icon if neu doesn't recognize your profile type - nopo
@@ -35,7 +35,8 @@
- Fixed minion tiers crafted by coop members not showing up in /pv - Lulonaut
- Fixed crash in /pv when the player had a pet that is not saved in the repo - Lulonaut
- Added senither and lily weight - CrypticPlasma
- - Added info about the Quiver when hovering over the arrow in the inventory tab of /pv - Lulonaut
+ - Added the Quiver Info when hovering in inventory tab over Arrows display - Lulonaut
+ - Added the Magical Power Info when hovering in inventory tab over Accessory Bag display - Lulonaut
### **Minor Changes:**
@@ -102,10 +103,12 @@
- Added Fishing Timer over bobber - nea89
- Added [Auction Profit Viewer Overlay](https://cdn.discordapp.com/attachments/848901833119629332/993191851400101918/176946124-28ddf336-1ec7-460b-b22a-5fe2733b46a3.png) - efefury
- Added Trophy Reward Overlay - hannibal2
-- Add Auto-Updater (linux and scu only) - nea89
+- Add Auto-Updater (linux only) - nea89
- Added power stone feature - hannibal2
- Added abiphone warning - hannibal2
-- Added blur limit at 100 - nopo
+- Added blur limit to map at 100 - nopo
+- Added bazaar sacks profit feature - hannibal2
+- Added an option to disable etherwarp overlay when TP is denied - hannibal2
### **Bug Fixes:**
@@ -132,6 +135,7 @@
- Fixed some vanilla Minecraft keybinds not working in NEU GUIs - nopo
- Fixed crash with spamming remove enchant in /neuec - nopo
- Fixed missing enchants not working with shiny items - nopo
+- Fixed golden dragon not working in pet overlay - CrypticPlasma
### **Other:**
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java
index d22b93f5..dd4c01af 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/NotEnoughUpdates.java
@@ -112,8 +112,8 @@ import java.util.Set;
public class NotEnoughUpdates {
public static final String MODID = "notenoughupdates";
public static final String VERSION = "2.1.0-REL";
- public static final int VERSION_ID = 20000;
- public static final int PRE_VERSION_ID = 1;
+ public static final int VERSION_ID = 20100;
+ public static final int PRE_VERSION_ID = 0;
public static final int HOTFIX_VERSION_ID = 0;
/**
* Registers the biomes for the crystal hollows here so optifine knows they exists
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/updater/AutoUpdater.java b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/updater/AutoUpdater.java
index 7869225d..e7ada16f 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/updater/AutoUpdater.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/updater/AutoUpdater.java
@@ -179,8 +179,8 @@ public class AutoUpdater {
public void displayUpdateMessageIfOutOfDate() {
File repo = neu.manager.repoLocation;
- if (repo.exists()) {
- File updateJson = new File(repo, "update.json");
+ File updateJson = new File(repo, "update.json");
+ if (updateJson.exists()) {
try {
JsonObject o = neu.manager.getJsonFromFile(updateJson);
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/bestiary/BestiaryPage.java b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/bestiary/BestiaryPage.java
index 7ca3e6a8..b37aa73f 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/bestiary/BestiaryPage.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/profileviewer/bestiary/BestiaryPage.java
@@ -112,6 +112,13 @@ public class BestiaryPage extends GuiProfileViewerPage {
List<String> mobs = BestiaryData.getBestiaryLocations().get(selectedBestiaryLocation);
Color color = new Color(128, 128, 128, 255);
+ Utils.renderAlignedString(
+ EnumChatFormatting.RED + "Bestiary Level: ",
+ EnumChatFormatting.GRAY + "" + (float) getBestiaryTiers(profileInfo) / 10,
+ guiLeft + 220,
+ guiTop + 50,
+ 110
+ );
if (mobs != null) {
for (int i = 0; i < mobs.size(); i++) {
String mob = mobs.get(i);
@@ -218,13 +225,6 @@ public class BestiaryPage extends GuiProfileViewerPage {
);
}
}
- Utils.renderAlignedString(
- EnumChatFormatting.RED + "Bestiary Level: ",
- EnumChatFormatting.GRAY + "" + (float) getBestiaryTiers(profileInfo) / 10,
- guiLeft + 220,
- guiTop + 50,
- 110
- );
}
}
if (tooltipToDisplay != null) {