aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/item
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-01-29 14:26:51 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-01-29 14:26:51 +1000
commit33a1703896cbc37b9986c71038e20c659edb7814 (patch)
tree6251665044fd27eba431a5762073cd1eb9d7d20d /src/Java/gtPlusPlus/core/item
parent0d8dc3b625c83c80e7a20b6b2233d972cb2f2af2 (diff)
downloadGT5-Unofficial-33a1703896cbc37b9986c71038e20c659edb7814.tar.gz
GT5-Unofficial-33a1703896cbc37b9986c71038e20c659edb7814.tar.bz2
GT5-Unofficial-33a1703896cbc37b9986c71038e20c659edb7814.zip
% Improved tooltip for Fluorite Ore.
% More ASM work on getDrops fix. $ Made GT++ Materials utilise GT TextureSets. $ Made Ore blocks use the most prominent texture set based on it's component materials. $ Fixed https://github.com/GTNewHorizons/NewHorizons/issues/2522. $ Fixed materials that require a blast furnace being fluid extractable. $ Fixed https://github.com/GTNewHorizons/NewHorizons/issues/2530.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r--src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java b/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java
index 8a72b4d629..4e868e5ecd 100644
--- a/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java
+++ b/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java
@@ -58,10 +58,10 @@ public class ItemBlockOre extends ItemBlock{
* Tooltip Handler for Ores
*/
if (this.mThisMaterial == FLUORIDES.FLUORITE){
- list.add("Mined from Sandstone and Limestone.");
+ list.add("Mined from Sandstone with a 1/"+CORE.ConfigSwitches.chanceToDropFluoriteOre+" chance, or Limestone with a 1/"+(CORE.ConfigSwitches.chanceToDropFluoriteOre*20)+" chance.");
}
else if (this.mThisMaterial != FLUORIDES.FLUORITE){
- list.add("Mined from the Dark Dimension.");
+ list.add("Mined from the Toxic Everglades.");
}
super.addInformation(stack, aPlayer, list, bool);
}