aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-04-18 17:21:03 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-04-18 17:21:03 +1000
commit9667ce84aa56b1a1e41d8ac8188d0d41c682914e (patch)
treeba7029507b386ea7acea90d76dbb45e6cf23c892 /src/Java/gtPlusPlus/xmod/gregtech/loaders
parent90f2e5a230cfad500a06e09a5a1297dd3efb02fe (diff)
downloadGT5-Unofficial-9667ce84aa56b1a1e41d8ac8188d0d41c682914e.tar.gz
GT5-Unofficial-9667ce84aa56b1a1e41d8ac8188d0d41c682914e.tar.bz2
GT5-Unofficial-9667ce84aa56b1a1e41d8ac8188d0d41c682914e.zip
+ Basic loot pool for Deep Earth Drilling Platform.
+ Added Runite and Granite Ores.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Ore.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Ore.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Ore.java
index 15627a827f..1cb999241a 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Ore.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Ore.java
@@ -107,7 +107,7 @@ public class RecipeGen_Ore extends RecipeGen_Base {
//If Fourth Output has no solid output, try the Fifth (If it exists)
if (!bonusB.hasSolidForm() && material.getComposites().size() >= 5 && material.getComposites().get(4) != null) {
bonusB = material.getComposites().get(4).getStackMaterial();
- //If Fifth Output has no solid output, default out to Chrome.
+ //If Fifth Output has no solid output, default out to Stone dust.
if (!bonusB.hasSolidForm()) {
allFailed = true;
bonusB = mStone;
@@ -127,11 +127,11 @@ public class RecipeGen_Ore extends RecipeGen_Base {
//Default out if it's made of fluids or some shit.
if (bonusA == null) {
- bonusA = tVoltageMultiplier <= 100 ? material : mStone;
+ bonusA = tVoltageMultiplier > 100 ? material : mStone;
}
//Default out if it's made of fluids or some shit.
if (allFailed || bonusB == null) {
- bonusB = tVoltageMultiplier <= 100 ? material : mStone;
+ bonusB = tVoltageMultiplier > 100 ? material : mStone;
}
AutoMap<Pair<Integer, Material>> componentMap = new AutoMap<Pair<Integer, Material>>();