Skip to content

Commit

Permalink
- CTMLib wasn't properly configured as a prerequisite which would som…
Browse files Browse the repository at this point in the history
…etimes lead to crashes despite the mod being present
  • Loading branch information
nuckable committed Feb 1, 2021
1 parent bfbe838 commit 69041a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ buildscript {

apply plugin: 'forge'

version = "1.0.6"
version = "1.0.7"
group= "org.rbh.tfcadditions"
archivesBaseName = "[1.7.10]TFC-Additions"

Expand Down
5 changes: 2 additions & 3 deletions src/main/java/org/rbh/tfcadditions/Reference/Reference.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class Reference {

public static final int VersionMajor = 1;
public static final int VersionMinor = 0;
public static final int VersionRevision = 6;
public static final int VersionRevision = 7;

public static final String ModVersion = VersionMajor + "." + VersionMinor + "." + VersionRevision;
//public static final String TFCVersion = "@TFCVERSION@";
Expand All @@ -23,6 +23,5 @@ public class Reference {

public static final String GUI_FACTORY = "org.rbh.tfcadditions.Config.GUIFactory";

public static final String ModDependencies = "required-after:terrafirmacraftplus" +
";required-after:ctmlib";
public static final String ModDependencies = "required-after:terrafirmacraftplus;required-after:ctm";
}
9 changes: 4 additions & 5 deletions src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[
{
"modListVersion": 2,
"modList": [{
"modid": "tfcadditions",
"name": "TFC-Additions",
"description": "Additions to TerraFirmaCraft",
"version": "${version}",
"mcversion": "${mcversion}",
"url" : "http://interburn.org",
"updateUrl": "http://interburn.org",
"authorList": [ "raymondbh" ],
"authorList": [ "raymondbh", "nuckable" ],
"credits": "http://interburn.org",
"logoFile": "",
"screenshots": [ ],
Expand All @@ -17,5 +16,5 @@
"dependencies": ["terrafirmacraftplus", "NotEnoughItems", "CTMLib"],
"dependants": [ ],
"useDependencyInformation": "true"
}]
}
}
]

0 comments on commit 69041a6

Please sign in to comment.