Closes #1404: Added logo to AE2

This commit is contained in:
thatsIch 2015-05-07 17:46:38 +02:00
parent e6e1771349
commit 81464d7de1
4 changed files with 19 additions and 19 deletions

View file

@ -104,6 +104,7 @@ sourceSets {
"assets/appliedenergistics2/textures/guis/*",
"assets/appliedenergistics2/textures/models/*",
"assets/appliedenergistics2/textures/items/*",
"assets/appliedenergistics2/meta/*",
"mcmod.info",
"pack.mcmeta"
}

View file

@ -22,6 +22,8 @@ package appeng.transformer;
import java.util.Map;
import javax.annotation.Nullable;
import com.google.common.eventbus.EventBus;
import cpw.mods.fml.common.DummyModContainer;
import cpw.mods.fml.common.LoadController;
import cpw.mods.fml.common.Mod.EventHandler;
@ -31,8 +33,6 @@ import cpw.mods.fml.relauncher.FMLRelaunchLog;
import cpw.mods.fml.relauncher.IFMLLoadingPlugin;
import cpw.mods.fml.relauncher.IFMLLoadingPlugin.MCVersion;
import com.google.common.eventbus.EventBus;
import appeng.core.AEConfig;
@ -51,6 +51,7 @@ public final class AppEngCore extends DummyModContainer implements IFMLLoadingPl
this.metadata.version = this.getVersion();
this.metadata.name = this.getName();
this.metadata.url = "http://ae2.ae-mod.info";
this.metadata.logoFile = "assets/appliedenergistics2/meta/logo.png";
this.metadata.description = "Embedded Coremod for Applied Energistics 2";
}
@ -105,7 +106,7 @@ public final class AppEngCore extends DummyModContainer implements IFMLLoadingPl
@Override
public String getName()
{
return "AppliedEnergistics2 Core";
return "Applied Energistics 2 Core";
}
@Override

Binary file not shown.

After

Width:  |  Height:  |  Size: 229 KiB

View file

@ -1,19 +1,17 @@
[
{
"modid":"appliedenergistics2",
"name":"Applied Energistics 2",
"description":"A Mod about Matter, Energy and using them to conquer the world..",
"version":"${version}",
"mcversion":"${mcversion}",
"url":"http://ae2.ae-mod.info",
"updateUrl":"",
"authorList":[
{
"modid":"appliedenergistics2",
"name":"Applied Energistics 2",
"description":"A Mod about Matter, Energy and using them to conquer the world..",
"version":"${version}",
"mcversion":"${mcversion}",
"url":"http://ae2.ae-mod.info",
"updateUrl":"",
"authorList":[
"AlgorithmX2"
],
"credits":"AlgorithmX2",
"logoFile":"",
"screenshots":[
]
}
],
"credits":"AlgorithmX2",
"logoFile":"assets/appliedenergistics2/meta/logo.png",
"screenshots":[]
}
]