Skip to content

Commit 69041a6

Browse files
committed
- CTMLib wasn't properly configured as a prerequisite which would sometimes lead to crashes despite the mod being present
1 parent bfbe838 commit 69041a6

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919

2020
apply plugin: 'forge'
2121

22-
version = "1.0.6"
22+
version = "1.0.7"
2323
group= "org.rbh.tfcadditions"
2424
archivesBaseName = "[1.7.10]TFC-Additions"
2525

src/main/java/org/rbh/tfcadditions/Reference/Reference.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class Reference {
99

1010
public static final int VersionMajor = 1;
1111
public static final int VersionMinor = 0;
12-
public static final int VersionRevision = 6;
12+
public static final int VersionRevision = 7;
1313

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

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

26-
public static final String ModDependencies = "required-after:terrafirmacraftplus" +
27-
";required-after:ctmlib";
26+
public static final String ModDependencies = "required-after:terrafirmacraftplus;required-after:ctm";
2827
}

src/main/resources/mcmod.info

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1+
[
12
{
2-
"modListVersion": 2,
3-
"modList": [{
43
"modid": "tfcadditions",
54
"name": "TFC-Additions",
65
"description": "Additions to TerraFirmaCraft",
76
"version": "${version}",
87
"mcversion": "${mcversion}",
98
"url" : "http://interburn.org",
109
"updateUrl": "http://interburn.org",
11-
"authorList": [ "raymondbh" ],
10+
"authorList": [ "raymondbh", "nuckable" ],
1211
"credits": "http://interburn.org",
1312
"logoFile": "",
1413
"screenshots": [ ],
@@ -17,5 +16,5 @@
1716
"dependencies": ["terrafirmacraftplus", "NotEnoughItems", "CTMLib"],
1817
"dependants": [ ],
1918
"useDependencyInformation": "true"
20-
}]
21-
}
19+
}
20+
]

0 commit comments

Comments
 (0)