Updated meta
This commit is contained in:
parent
1379810d1a
commit
7a465cdf7b
1 changed files with 15 additions and 15 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue