Skip to content

Commit 9f4950f

Browse files
committed
hotfix
1 parent 8c0bf5e commit 9f4950f

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
1) Quick fix for bolts being useable as arrows.
1+
1) Added update checker
2+
2) hard depend on correct versions of forge and basemetals
3+
3) Fix bug in orespawn causing load error

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ allprojects {
3737
targetCompatibility = 1.8
3838
}
3939

40-
version = "0.9.2.1"
40+
version = "0.9.2.2"
4141
group= "modernmetals" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
4242
archivesBaseName = "ModernMetals"
4343

src/main/java/modernmetals/ModernMetals.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,16 @@
2828
modid = ModernMetals.MODID,
2929
name = ModernMetals.NAME,
3030
version = ModernMetals.VERSION,
31-
dependencies = "required-after:Forge;required-after:basemetals")
31+
dependencies = "required-after:Forge@[12.16.0.1865,);required-after:basemetals@[2.2,)",
32+
acceptedMinecraftVersions = "1.9",
33+
//certificateFingerprint = "",
34+
updateJSON = "https://raw.githubusercontent.com/jriwanek/ModernMetals/master/update.json")
3235
public class ModernMetals
3336
{
3437
public static ModernMetals INSTANCE = null;
3538
public static final String MODID = "modernmetals";
3639
public static final String NAME = "Modern Metals";
37-
public static final String VERSION = "0.9.2.1";
40+
public static final String VERSION = "0.9.2.2";
3841

3942
/** All ore-spawn files discovered in the ore-spawn folder */
4043
public static final List<Path> oreSpawnConfigFiles = new LinkedList<>();

src/main/java/modernmetals/data/DataConstants.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ public class DataConstants {
111111
//+ "\n {"
112112
//+ "\n \"blockID\":\"modernmetals:titanium_ore\","
113113
//+ "\n \"size\":8,"
114-
+ "\n \"variation\":4,"
115-
+ "\n \"frequency\":20,"
116-
+ "\n \"minHeight\":0,"
114+
//+ "\n \"variation\":4,"
115+
//+ "\n \"frequency\":20,"
116+
//+ "\n \"minHeight\":0,"
117117
//+ "\n \"maxHeight\":96"
118118
//+ "\n },"
119119
+ "\n {"

update.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"homepage": "http://minecraft.curseforge.com/projects/modern-metals",
33
"promos": {
4-
"1.9-latest": "0.9.2.1",
4+
"1.9-latest": "0.9.2.2",
55
"1.8.9-latest": "0.10.0",
66
"1.8.8-latest": "0.0.0",
77
"1.8-latest": "0.0.0",
88
"1.7.10-latest": "0.0.0",
99
"1.7.2-latest": "0.0.0",
1010
"1.6.4-latest": "0.0.0",
11-
"1.9-recommended": "0.9.2.1",
11+
"1.9-recommended": "0.9.2.2",
1212
"1.8.9-recommended": "0.10.0",
1313
"1.8.8-recommended": "0.0.0",
1414
"1.8-recommended": "0.0.0",
@@ -17,6 +17,7 @@
1717
"1.6.4-recommended": "0.0.0"
1818
},
1919
"1.9": {
20+
"0.9.2.1": "Alpha Release 0.9.2.2",
2021
"0.9.2.1": "Alpha Release 0.9.2.1",
2122
"0.9.2": "Alpha Release 0.9.2",
2223
"0.9.1": "Alpha Release 0.9.1",

0 commit comments

Comments
 (0)