Skip to content

Commit

Permalink
Version 1.2.1
Browse files Browse the repository at this point in the history
Support for Aether Legacy v1.4.0, which changed the version numbering format!
  • Loading branch information
Shnupbups committed Feb 2, 2019
1 parent 1047252 commit 4f23521
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ build

# other
eclipse
run
run
wiki/
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'net.minecraftforge.gradle.forge'
//Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.


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

Expand Down
Binary file not shown.
4 changes: 2 additions & 2 deletions src/main/java/shnupbups/tinkersaether/TinkersAether.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
import slimeknights.tconstruct.library.materials.BowMaterialStats;
import slimeknights.tconstruct.tools.TinkerMaterials;

@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,);")
@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,);")
public class TinkersAether {
public static final String modid = "tinkersaether";
public static final String name = "Tinkers Aether";
public static final String version = "1.2.0";
public static final String version = "1.2.1";

@Mod.Instance(modid)
public static TinkersAether instance;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/shnupbups/tinkersaether/modules/ModuleBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ public void registerRecipes(RegistryEvent.Register<IRecipe> event) {
}

@SubscribeEvent
public static void registerItems(RegistryEvent.Register<Item> event) {
public void registerItems(RegistryEvent.Register<Item> event) {
IForgeRegistry<Item> registry = event.getRegistry();
if(TAConfig.valkyrie) {
registry.register(valkyrieIngot);
Expand All @@ -352,7 +352,7 @@ public static void registerItems(RegistryEvent.Register<Item> event) {
}

@SubscribeEvent
public static void registerBlocks(RegistryEvent.Register<Block> event) {
public void registerBlocks(RegistryEvent.Register<Block> event) {
IForgeRegistry<Block> registry = event.getRegistry();
if(TAConfig.valkyrie) {
valkyrieBlock.setHarvestLevel("pickaxe",3);
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"modid": "tinkersaether",
"name": "Tinker's Aether",
"description": "Adds Aether materials and stuff to Tinker's Construct.",
"version": "1.2.0",
"version": "1.2.1",
"mcversion": "${mcversion}",
"url": "",
"url": "https://minecraft.curseforge.com/projects/tinkers-aether",
"updateUrl": "",
"authorList": ["Shnupbups"],
"credits": "",
Expand Down

0 comments on commit 4f23521

Please sign in to comment.