diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-08-30 16:32:45 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-08-30 16:32:45 +1000 |
commit | 5ba0476c5d9ffa41e272d35d8703543e5468c0b3 (patch) | |
tree | b88d7fbd38006859c1dbbdd6f4bfa64dfa0820a1 /src/Java/miscutil/core/handler | |
parent | 31fa812d171e05b1756852155adecba90fb4f848 (diff) | |
download | GT5-Unofficial-5ba0476c5d9ffa41e272d35d8703543e5468c0b3.tar.gz GT5-Unofficial-5ba0476c5d9ffa41e272d35d8703543e5468c0b3.tar.bz2 GT5-Unofficial-5ba0476c5d9ffa41e272d35d8703543e5468c0b3.zip |
% Refined the Radiation handler.
> Now it does variable damage based on what material is being handled.
% Refined the material generation system.
> Radioactive materials no longer generate Gears, Rings, Screws, Bolts or Rotors. (No point or use.)
Diffstat (limited to 'src/Java/miscutil/core/handler')
-rw-r--r-- | src/Java/miscutil/core/handler/registration/gregtech/GregtechConduits.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Java/miscutil/core/handler/registration/gregtech/GregtechConduits.java b/src/Java/miscutil/core/handler/registration/gregtech/GregtechConduits.java index 920a3d7acf..f3cc14e889 100644 --- a/src/Java/miscutil/core/handler/registration/gregtech/GregtechConduits.java +++ b/src/Java/miscutil/core/handler/registration/gregtech/GregtechConduits.java @@ -222,11 +222,11 @@ public class GregtechConduits { ItemStack pipePlate = UtilsItems.getItemStackOfAmountFromOreDict("plate"+output, 1).copy(); //Check all pipes are not null - Utils.LOG_INFO("Generated pipeTiny from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Tiny"+output, 1) != null) ? true : false)); - Utils.LOG_INFO("Generated pipeSmall from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Small"+output, 1) != null) ? true : false)); - Utils.LOG_INFO("Generated pipeNormal from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Medium"+output, 1) != null) ? true : false)); - Utils.LOG_INFO("Generated pipeLarge from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Large"+output, 1) != null) ? true : false)); - Utils.LOG_INFO("Generated pipeHuge from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Huge"+output, 1) != null) ? true : false)); + Utils.LOG_WARNING("Generated pipeTiny from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Tiny"+output, 1) != null) ? true : false)); + Utils.LOG_WARNING("Generated pipeSmall from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Small"+output, 1) != null) ? true : false)); + Utils.LOG_WARNING("Generated pipeNormal from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Medium"+output, 1) != null) ? true : false)); + Utils.LOG_WARNING("Generated pipeLarge from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Large"+output, 1) != null) ? true : false)); + Utils.LOG_WARNING("Generated pipeHuge from "+ materialName +"? "+ ((UtilsItems.getItemStackOfAmountFromOreDict("pipe"+"Huge"+output, 1) != null) ? true : false)); //Add the Three Shaped Recipes First UtilsRecipe.recipeBuilder( |