Skip to content

Commit

Permalink
1.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey-Terzi committed Jul 12, 2015
1 parent 4593153 commit 3753861
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
}

configurations {
runtime.exclude group: "[1.7.10]TerraFirmaCraft-0.79.17.645"
runtime.exclude group: "[1.7.10]TerraFirmaCraft-0.79.18.673"
}

// define the properties file
Expand Down Expand Up @@ -64,7 +64,7 @@ task copyJar(type: Copy) {
tasks.build.dependsOn('copyJar')

dependencies {
// Copy "[1.7.10]TerraFirmaCraft-0.79.17.645" file
// Copy "[1.7.10]TerraFirmaCraft-0.79.18.673.jar" file
// into the ./libs directory
}

Expand Down
2 changes: 1 addition & 1 deletion build.prop
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
minecraft_version=1.7.10
forge_version=10.13.2.1291
mod_version=1.0.17
mod_version=1.0.18
group_name=com.aleksey.decorations
archive_name=[1.7.10]Decorations
2 changes: 1 addition & 1 deletion src/com/aleksey/decorations/Core/Recipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static void registerAnvilRecipes()
{
AnvilManager manager = AnvilManager.getInstance();

manager.addPlan(_lanternCorePlan, new PlanRecipe(new RuleEnum[] { RuleEnum.HITLAST, RuleEnum.PUNCHANY, RuleEnum.HITANY }));
manager.addPlan(_lanternCorePlan, new PlanRecipe(new RuleEnum[] { RuleEnum.HITLAST, RuleEnum.PUNCHNOTLAST, RuleEnum.HITNOTLAST }));

for(int i = 0; i < Constants.Lanterns.length; i++)
{
Expand Down
2 changes: 1 addition & 1 deletion src/com/aleksey/decorations/DecorationsMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import cpw.mods.fml.common.event.FMLPreInitializationEvent;
import cpw.mods.fml.common.registry.ExistingSubstitutionException;

@Mod(modid="DecorationsTFC", name="Decorations", version="1.0.17", dependencies="required-after:terrafirmacraft")
@Mod(modid="DecorationsTFC", name="Decorations", version="1.0.18", dependencies="required-after:terrafirmacraft")
public class DecorationsMod
{
@Instance("DecorationsTFC")
Expand Down

0 comments on commit 3753861

Please sign in to comment.