diff options
author | Jordan Byrne <draknyte1@hotmail.com> | 2018-01-31 06:59:16 +1000 |
---|---|---|
committer | Jordan Byrne <draknyte1@hotmail.com> | 2018-01-31 06:59:16 +1000 |
commit | c793ff869c74bae8c35516042f5ae883aeb270c9 (patch) | |
tree | 56ced5386f9bfeee1faa9629926f0e6ca6493c53 /src | |
parent | 453a77485c9e630e90a98023bce17b0db2b5aa5b (diff) | |
download | GT5-Unofficial-c793ff869c74bae8c35516042f5ae883aeb270c9.tar.gz GT5-Unofficial-c793ff869c74bae8c35516042f5ae883aeb270c9.tar.bz2 GT5-Unofficial-c793ff869c74bae8c35516042f5ae883aeb270c9.zip |
$ Minor fixes.
Diffstat (limited to 'src')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java | 2 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_General.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java b/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java index 4e868e5ecd..7aae98ca22 100644 --- a/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java +++ b/src/Java/gtPlusPlus/core/item/base/itemblock/ItemBlockOre.java @@ -58,7 +58,7 @@ public class ItemBlockOre extends ItemBlock{ * Tooltip Handler for Ores */ if (this.mThisMaterial == FLUORIDES.FLUORITE){ - list.add("Mined from Sandstone with a 1/"+CORE.ConfigSwitches.chanceToDropFluoriteOre+" chance, or Limestone with a 1/"+(CORE.ConfigSwitches.chanceToDropFluoriteOre*20)+" chance."); + list.add("Mined from Sandstone with a 1/"+(CORE.ConfigSwitches.chanceToDropFluoriteOre*20)+" chance, or Limestone with a 1/"+(CORE.ConfigSwitches.chanceToDropFluoriteOre)+" chance."); } else if (this.mThisMaterial != FLUORIDES.FLUORITE){ list.add("Mined from the Toxic Everglades."); diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java index 4f69840290..35b05ee48d 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java @@ -126,14 +126,14 @@ public class RECIPES_General { CI.explosiveITNT, CI.explosiveTNT, CI.explosiveITNT, CI.explosiveTNT, "frameGtWroughtIron", CI.explosiveTNT, "dustSulfur", CI.explosiveTNT, "dustSulfur", - ItemUtils.getSimpleStack(ModBlocks.blockMiningExplosive))){ + ItemUtils.getSimpleStack(ModBlocks.blockMiningExplosive, 3))){ Logger.INFO("Added a recipe for Mining Explosives."); } //Mystic Frame if (RecipeUtils.recipeBuilder( CI.sensor_HV, CI.fieldGenerator_MV, CI.sensor_HV, - CI.craftingToolHammer_Hard, ItemList.Casing_SolidSteel, CI.craftingToolSolderingIron, + CI.craftingToolHammer_Hard, ItemList.Casing_SolidSteel.get(1), CI.craftingToolSolderingIron, CI.emitter_HV, CI.fieldGenerator_MV, CI.emitter_HV, ItemUtils.getSimpleStack(Dimension_DarkWorld.blockPortalFrame, 2))){ Logger.INFO("Added a recipe for the Toxic Everglades Portal frame"); |