Skip to content

Commit 4f23521

Browse files
committed
Version 1.2.1
Support for Aether Legacy v1.4.0, which changed the version numbering format!
1 parent 1047252 commit 4f23521

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ build
1919

2020
# other
2121
eclipse
22-
run
22+
run
23+
wiki/

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
1111
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
1212

1313

14-
version = "1.2.0"
14+
version = "1.2.1"
1515
group = "shnupbups.tinkersaether" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
1616
archivesBaseName = "tinkersaether"
1717

Binary file not shown.

src/main/java/shnupbups/tinkersaether/TinkersAether.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
import slimeknights.tconstruct.library.materials.BowMaterialStats;
2828
import slimeknights.tconstruct.tools.TinkerMaterials;
2929

30-
@Mod(modid = TinkersAether.modid, name = TinkersAether.name, version = TinkersAether.version, acceptedMinecraftVersions = "[1.12.2]", dependencies = "required-after:mantle;required-after:tconstruct;required-after:aether_legacy@[1.12.2-v3.2,);")
30+
@Mod(modid = TinkersAether.modid, name = TinkersAether.name, version = TinkersAether.version, acceptedMinecraftVersions = "[1.12.2]", dependencies = "required-after:mantle;required-after:tconstruct;required-after:aether_legacy@[1.12.2-v1.4.0,);")
3131
public class TinkersAether {
3232
public static final String modid = "tinkersaether";
3333
public static final String name = "Tinkers Aether";
34-
public static final String version = "1.2.0";
34+
public static final String version = "1.2.1";
3535

3636
@Mod.Instance(modid)
3737
public static TinkersAether instance;

src/main/java/shnupbups/tinkersaether/modules/ModuleBase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ public void registerRecipes(RegistryEvent.Register<IRecipe> event) {
328328
}
329329

330330
@SubscribeEvent
331-
public static void registerItems(RegistryEvent.Register<Item> event) {
331+
public void registerItems(RegistryEvent.Register<Item> event) {
332332
IForgeRegistry<Item> registry = event.getRegistry();
333333
if(TAConfig.valkyrie) {
334334
registry.register(valkyrieIngot);
@@ -352,7 +352,7 @@ public static void registerItems(RegistryEvent.Register<Item> event) {
352352
}
353353

354354
@SubscribeEvent
355-
public static void registerBlocks(RegistryEvent.Register<Block> event) {
355+
public void registerBlocks(RegistryEvent.Register<Block> event) {
356356
IForgeRegistry<Block> registry = event.getRegistry();
357357
if(TAConfig.valkyrie) {
358358
valkyrieBlock.setHarvestLevel("pickaxe",3);

src/main/resources/mcmod.info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"modid": "tinkersaether",
44
"name": "Tinker's Aether",
55
"description": "Adds Aether materials and stuff to Tinker's Construct.",
6-
"version": "1.2.0",
6+
"version": "1.2.1",
77
"mcversion": "${mcversion}",
8-
"url": "",
8+
"url": "https://minecraft.curseforge.com/projects/tinkers-aether",
99
"updateUrl": "",
1010
"authorList": ["Shnupbups"],
1111
"credits": "",

0 commit comments

Comments
 (0)