Updated meta

This commit is contained in:
DarkGuardsman 2013-10-21 08:27:57 -04:00
parent 1379810d1a
commit 7a465cdf7b

View file

@ -103,6 +103,19 @@ public class AssemblyLine extends ModPrefab
NetworkRegistry.instance().registerGuiHandler(this, proxy);
proxy.preInit();
}
@EventHandler
public void load(FMLInitializationEvent evt)
{
super.init(evt);
proxy.init();
FMLog.info("Loaded: " + TranslationHelper.loadLanguages(LANGUAGE_PATH, LANGUAGES_SUPPORTED) + " languages.");
recipeLoader.loadRecipes();
//GameRegistry.registerBlock(recipeLoader.blockConveyorBelt, "ConveyorBelt");
GameRegistry.registerBlock(recipeLoader.blockCrate, ItemBlockCrate.class, "Crate");
GameRegistry.registerBlock(recipeLoader.blockManipulator, "Manipulator");
@ -124,19 +137,6 @@ public class AssemblyLine extends ModPrefab
DMCreativeTab.tabAutomation.setIconItemStack(new ItemStack(recipeLoader.blockConveyorBelt));
proxy.preInit();
}
@EventHandler
public void load(FMLInitializationEvent evt)
{
super.init(evt);
proxy.init();
FMLog.info("Loaded: " + TranslationHelper.loadLanguages(LANGUAGE_PATH, LANGUAGES_SUPPORTED) + " languages.");
recipeLoader.loadRecipes();
}
@Override
@ -177,11 +177,11 @@ public class AssemblyLine extends ModPrefab
meta.name = AssemblyLine.MOD_NAME;
meta.description = "Simi Realistic factory system for minecraft bring in conveyor belts, robotic arms, and simple machines";
meta.url = "http://universalelectricity.com/assembly-line";
meta.url = "http://www.universalelectricity.com/coremachine";
meta.logoFile = "/al_logo.png";
meta.version = DarkMain.VERSION;
meta.authorList = Arrays.asList(new String[] { "DarkGuardsman" });
meta.authorList = Arrays.asList(new String[] { "DarkGuardsman", "Briman", "Calclavia" });
meta.credits = "Please see the website.";
meta.autogenerated = false;