aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoKM <mcazzyman@gmail.com>2021-07-26 11:43:18 +0200
committerDoKM <mcazzyman@gmail.com>2021-07-26 11:43:18 +0200
commit26f5ccc2ab64cd4ac9deb21fd53b134eb818871e (patch)
tree740a6ee8229b8fe6b6767999c7e18fbcc42614b5
parent99f63f20b40b22b54ab0b3dba44e3424c1a8d9c8 (diff)
downloadNotEnoughUpdates-26f5ccc2ab64cd4ac9deb21fd53b134eb818871e.tar.gz
NotEnoughUpdates-26f5ccc2ab64cd4ac9deb21fd53b134eb818871e.tar.bz2
NotEnoughUpdates-26f5ccc2ab64cd4ac9deb21fd53b134eb818871e.zip
Fix drill fuel text not being removed
-rw-r--r--Update Notes/2.0-Pre31.md1
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java2
2 files changed, 2 insertions, 1 deletions
diff --git a/Update Notes/2.0-Pre31.md b/Update Notes/2.0-Pre31.md
index 421c17c9..53bad2c6 100644
--- a/Update Notes/2.0-Pre31.md
+++ b/Update Notes/2.0-Pre31.md
@@ -20,6 +20,7 @@
- Set Alexxoffi's cape's properties to the right value.
- Add an extra button texture so dark ui themes do not make the dungeon map editor unreadable. (located at "dungeon_map/editor/button.png")
- Fix a spelling mistake in todo timers "Godpotf".
+- Fix Reforge stones with reforges that have no stats not showing the tooltip (hot stuff/heated example) (heated can now have its stats hotfix reverted @repo guys)
### **Other**
- code clean up by Ironm00n.
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java b/src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java
index 7a169017..43b43277 100644
--- a/src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java
+++ b/src/main/java/io/github/moulberry/notenoughupdates/NEUEventListener.java
@@ -756,7 +756,7 @@ public class NEUEventListener {
private String processText(String text) {
if(SBInfo.getInstance().getLocation() == null) return text;
- if(!SBInfo.getInstance().getLocation().startsWith("mining_")) return text;
+ if(!SBInfo.getInstance().getLocation().startsWith("mining_")&&!SBInfo.getInstance().getLocation().equals("crystal_hollows")) return text;
if(Minecraft.getMinecraft().thePlayer == null) return text;
if(!NotEnoughUpdates.INSTANCE.config.mining.drillFuelBar) return text;