Kill off old induction stuff, bump version to 6.0.1
This commit is contained in:
parent
819e82e0f0
commit
95698e45ea
7 changed files with 9 additions and 26 deletions
|
@ -159,7 +159,7 @@ import cpw.mods.fml.common.registry.GameRegistry;
|
|||
* @author AidanBrady
|
||||
*
|
||||
*/
|
||||
@Mod(modid = "Mekanism", name = "Mekanism", version = "6.0.0")
|
||||
@Mod(modid = "Mekanism", name = "Mekanism", version = "6.0.1")
|
||||
@NetworkMod(channels = {"MEK"}, clientSideRequired = true, serverSideRequired = false, packetHandler = PacketHandler.class)
|
||||
public class Mekanism
|
||||
{
|
||||
|
@ -184,7 +184,7 @@ public class Mekanism
|
|||
public static Configuration configuration;
|
||||
|
||||
/** Mekanism version number */
|
||||
public static Version versionNumber = new Version(6, 0, 0);
|
||||
public static Version versionNumber = new Version(6, 0, 1);
|
||||
|
||||
/** Map of Teleporters */
|
||||
public static Map<Teleporter.Code, ArrayList<Coord4D>> teleporters = new HashMap<Teleporter.Code, ArrayList<Coord4D>>();
|
||||
|
|
|
@ -35,7 +35,7 @@ import cpw.mods.fml.common.network.NetworkMod;
|
|||
import cpw.mods.fml.common.network.NetworkRegistry;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
|
||||
@Mod(modid = "MekanismGenerators", name = "MekanismGenerators", version = "6.0.0", dependencies = "required-after:Mekanism")
|
||||
@Mod(modid = "MekanismGenerators", name = "MekanismGenerators", version = "6.0.1", dependencies = "required-after:Mekanism")
|
||||
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
|
||||
public class MekanismGenerators implements IModule
|
||||
{
|
||||
|
@ -46,7 +46,7 @@ public class MekanismGenerators implements IModule
|
|||
public static MekanismGenerators instance;
|
||||
|
||||
/** MekanismGenerators version number */
|
||||
public static Version versionNumber = new Version(6, 0, 0);
|
||||
public static Version versionNumber = new Version(6, 0, 1);
|
||||
|
||||
//Items
|
||||
public static Item BioFuel;
|
||||
|
|
|
@ -35,7 +35,7 @@ import cpw.mods.fml.common.network.NetworkMod;
|
|||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
import cpw.mods.fml.common.registry.LanguageRegistry;
|
||||
|
||||
@Mod(modid = "MekanismTools", name = "MekanismTools", version = "6.0.0", dependencies = "required-after:Mekanism")
|
||||
@Mod(modid = "MekanismTools", name = "MekanismTools", version = "6.0.1", dependencies = "required-after:Mekanism")
|
||||
@NetworkMod(clientSideRequired = true, serverSideRequired = false)
|
||||
public class MekanismTools implements IModule
|
||||
{
|
||||
|
@ -43,7 +43,7 @@ public class MekanismTools implements IModule
|
|||
public static MekanismTools instance;
|
||||
|
||||
/** MekanismTools version number */
|
||||
public static Version versionNumber = new Version(6, 0, 0);
|
||||
public static Version versionNumber = new Version(6, 0, 1);
|
||||
|
||||
//Enums: Tools
|
||||
public static EnumToolMaterial toolOBSIDIAN = EnumHelper.addToolMaterial("OBSIDIAN", 3, 2500, 20F, 10, 100);
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"modid": "Mekanism",
|
||||
"name": "Mekanism",
|
||||
"description": "Energy, Armor, Tools, Weapons, Machines, Magic.",
|
||||
"version": "6.0.0",
|
||||
"version": "6.0.1",
|
||||
"mcversion": "1.6.4",
|
||||
"updateUrl": "",
|
||||
"authors": [
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"modid": "MekanismGenerators",
|
||||
"name": "MekanismGenerators",
|
||||
"description": "Generators module of Mekanism.",
|
||||
"version": "6.0.0",
|
||||
"version": "6.0.1",
|
||||
"mcversion": "1.6.4",
|
||||
"updateUrl": "",
|
||||
"authors": [
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
[
|
||||
{
|
||||
"modid": "MekanismInduction",
|
||||
"name": "MekanismInduction",
|
||||
"description": "Induction module of Mekanism.",
|
||||
"version": "5.7.0",
|
||||
"mcversion": "1.6.4",
|
||||
"updateUrl": "",
|
||||
"authors": [
|
||||
"aidancbrady"
|
||||
],
|
||||
"credits": "Thanks to everyone who has contributed to this ongoing project.",
|
||||
"logoFile": "logo.png",
|
||||
"screenshots": [
|
||||
]
|
||||
}
|
||||
]
|
|
@ -3,7 +3,7 @@
|
|||
"modid": "MekanismTools",
|
||||
"name": "MekanismTools",
|
||||
"description": "Tools module for Mekanism.",
|
||||
"version": "6.0.0",
|
||||
"version": "6.0.1",
|
||||
"mcversion": "1.6.4",
|
||||
"updateUrl": "",
|
||||
"authors": [
|
||||
|
|
Loading…
Reference in a new issue