Skip to content

Commit

Permalink
Bump version. (No build yet.)
Browse files Browse the repository at this point in the history
Signed-off-by: King Lemming <[email protected]>
  • Loading branch information
KingLemming committed Dec 22, 2017
1 parent f8eac83 commit 5d1c292
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ dependencies {
compile "cofh:ThermalFoundation:${config.mc_version}-${config.tf_version}:deobf"
}

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

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

# Mod Version
mod_version=0.1.2
mod_version=0.1.3

# Dependencies
rf_mc_version=1.12
rf_version=2.0.1.+
cofh_core_version=4.3.7.+
tf_version=2.3.7.+
cofh_core_version=4.3.8.+
tf_version=2.3.8.+
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ThermalCultivation {
public static final String MOD_ID = "thermalcultivation";
public static final String MOD_NAME = "Thermal Cultivation";

public static final String VERSION = "0.1.2";
public static final String VERSION = "0.1.3";
public static final String VERSION_MAX = "1.0.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 @@ -243,7 +243,7 @@ public EnumActionResult onItemUse(EntityPlayer player, World world, BlockPos pos
if (state.getBlock() instanceof BlockFarmland) {
int moisture = state.getValue(BlockFarmland.MOISTURE);
if (moisture < 7) {
world.setBlockState(scan, state.withProperty(BlockFarmland.MOISTURE, 7), 2);
world.setBlockState(scan, state.withProperty(BlockFarmland.MOISTURE, 7), 3);
}
}
}
Expand Down

0 comments on commit 5d1c292

Please sign in to comment.