Skip to content

Commit

Permalink
Anvil recipe cost fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MJaroslav committed Nov 1, 2017
1 parent debcbfa commit 02ff9e7
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repositories {

apply plugin: 'forge'

version = "1.7.10-2"
version = "1.7.10-3"
group= "mjaroslav.mcmods.mjutils" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "mjutils"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public int getLevels(ItemStack left, ItemStack right, String name) {
int levels = ((AnvilResult) entry.getValue()).levels;
if (levels < 1)
levels = 1;
return 1;
return levels;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/mjaroslav/mcmods/mjutils/lib/MJInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class MJInfo {
/** MJUtils: mod name. */
public static final String NAME = "MJUtils";
/** MJUtils: mod version. */
public static final String VERSION = "1.7.10-2";
public static final String VERSION = "1.7.10-3";
/** MJUtils: Mod common proxy. */
public static final String COMMONPROXY = "mjaroslav.mcmods.mjutils.common.MJUtilsCommonProxy";
/** MJUtils: Mod client proxy. */
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "mjutils",
"name": "MJUtils",
"description": "Mod-lib for MJaroslav's mods",
"version": "1.7.10-2",
"version": "1.7.10-3",
"mcversion": "1.7.10",
"url": "https://minecraft.curseforge.com/projects/mjutils",
"authorList": ["MJaroslav"],
Expand Down

0 comments on commit 02ff9e7

Please sign in to comment.