#releaseBuild fix Advanced alloy
This commit is contained in:
parent
16ec10dcd3
commit
4797d64f5b
3 changed files with 3 additions and 3 deletions
|
@ -54,7 +54,7 @@ configurations {
|
|||
compile.extendsFrom shade
|
||||
}
|
||||
|
||||
version = "2.20.8"
|
||||
version = "2.20.9"
|
||||
|
||||
def ENV = System.getenv()
|
||||
if (ENV.BUILD_NUMBER) {
|
||||
|
|
|
@ -148,7 +148,7 @@ public enum IC2Duplicates {
|
|||
|
||||
public ItemStack getStackBasedOnConfig() {
|
||||
//Used only for when de-duping classic only items
|
||||
if(!classicOnly){
|
||||
if(!isClassicMode() && classicOnly){
|
||||
return getTrStack();
|
||||
}
|
||||
if (deduplicate()) {
|
||||
|
|
|
@ -40,13 +40,13 @@ public class SmeltingRecipes extends RecipeMethods {
|
|||
register(getMaterial("sap", Type.PART), getMaterial("rubber", Type.PART));
|
||||
if(!IC2Duplicates.isClassicalDedupe()){
|
||||
register(getStack(Items.IRON_INGOT), getMaterial("refined_iron", Type.INGOT));
|
||||
register(IC2Duplicates.MIXED_METAL.getStackBasedOnConfig(), getMaterial("advanced_alloy", Type.INGOT));
|
||||
}
|
||||
register(BlockOre2.getOreByName("copper"), getMaterial("copper", Type.INGOT));
|
||||
register(BlockOre2.getOreByName("tin"), getMaterial("tin", Type.INGOT));
|
||||
register(BlockOre.getOreByName("silver"), getMaterial("silver", Type.INGOT));
|
||||
register(BlockOre.getOreByName("lead"), getMaterial("lead", Type.INGOT));
|
||||
register(BlockOre.getOreByName("sheldonite"), getMaterial("platinum", Type.INGOT));
|
||||
register(IC2Duplicates.MIXED_METAL.getStackBasedOnConfig(), getMaterial("advanced_alloy", Type.INGOT));
|
||||
|
||||
|
||||
// Dust smelting
|
||||
|
|
Loading…
Reference in a new issue