Skip to content

Commit

Permalink
Adds a "does not work in space" tooltip entry to ore wand (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
querns authored Aug 2, 2022
1 parent 1c03b7b commit d0debd9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/com/encraft/dz/items/ItemOreFinderTool.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,11 @@ public void addInformation(ItemStack itemStack, EntityPlayer player, List list,
list.add("SHIFT+RIGHT CLICK on ground to open inventory");
list.add("You can only use 1 finder at a time");
list.add("Search radius X, Z: "+ ConfigHandler.xzAreaRadius +" Y: "+ConfigHandler.yAreaRadius);

if (!ConfigHandler.aEnableEverywhere) {
list.add("** DOES NOT WORK IN SPACE! **");
list.add("Overworld, Nether, Twilight Forest only");
}
}
}

Expand Down

0 comments on commit d0debd9

Please sign in to comment.