Skip to content

Commit

Permalink
Adjustments to recipes, bump version. (No build yet.)
Browse files Browse the repository at this point in the history
Signed-off-by: King Lemming <kinglemming@gmail.com>
  • Loading branch information
KingLemming committed Dec 22, 2017
1 parent 3da747c commit bdea159
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies {
compile "mezz.jei:jei_${config.jei_mc_version}:${config.jei_version}"
}

version = "${project.config.mod_version}." + (System.getenv("BUILD_NUMBER") ?: "1")
version = "${project.config.mod_version}." + (System.getenv("BUILD_NUMBER") ?: "26")

println config.mc_version + "-" + config.forge_version
// Setup the Forge/Minecraft plugin data. Specify the preferred Forge/Minecraft version here.
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ forge_version=14.23.1.2555
mappings=snapshot_20171003

# Mod Version
mod_version=4.3.7
mod_version=4.3.8

# Dependencies
rf_mc_version=1.12
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cofh/CoFHCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class CoFHCore {
public static final String MOD_ID = "cofhcore";
public static final String MOD_NAME = "CoFH Core";

public static final String VERSION = "4.3.7";
public static final String VERSION = "4.3.8";
public static final String VERSION_MAX = "4.4.0";
public static final String VERSION_GROUP = "required-after:" + MOD_ID + "@[" + VERSION + "," + VERSION_MAX + ");";
public static final String UPDATE_URL = "https://raw.github.com/cofh/version/master/" + MOD_ID + "_update.json";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ public boolean apply(@Nullable ItemStack input) {
}
return false;
}

@Override
public boolean isSimple() {

return false;
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ public ItemStack getCraftingResult(@Nonnull InventoryCrafting inv) {
}
return outputStack;
}

@Override
public boolean isDynamic() {

return true;
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,12 @@ public NonNullList<ItemStack> getRemainingItems(InventoryCrafting inv) {
}
return ret;
}

@Override
public boolean isDynamic() {

return true;
}
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ public ItemStack getCraftingResult(@Nonnull InventoryCrafting inv) {
}
return AugmentHelper.setLevel(outputStack, upgradeLevel);
}

@Override
public boolean isDynamic() {

return true;
}
}

}

0 comments on commit bdea159

Please sign in to comment.