Skip to content

Commit d0debd9

Browse files
authored
Adds a "does not work in space" tooltip entry to ore wand (#11)
1 parent 1c03b7b commit d0debd9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/com/encraft/dz/items/ItemOreFinderTool.java

+5
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,11 @@ public void addInformation(ItemStack itemStack, EntityPlayer player, List list,
238238
list.add("SHIFT+RIGHT CLICK on ground to open inventory");
239239
list.add("You can only use 1 finder at a time");
240240
list.add("Search radius X, Z: "+ ConfigHandler.xzAreaRadius +" Y: "+ConfigHandler.yAreaRadius);
241+
242+
if (!ConfigHandler.aEnableEverywhere) {
243+
list.add("** DOES NOT WORK IN SPACE! **");
244+
list.add("Overworld, Nether, Twilight Forest only");
245+
}
241246
}
242247
}
243248

0 commit comments

Comments
 (0)