diff --git a/src/main/java/appeng/core/AppEng.java b/src/main/java/appeng/core/AppEng.java index aab74c841..94dcafd6d 100644 --- a/src/main/java/appeng/core/AppEng.java +++ b/src/main/java/appeng/core/AppEng.java @@ -44,7 +44,6 @@ import net.minecraftforge.client.model.geometry.IModelGeometry; import net.minecraftforge.common.MinecraftForge; import net.minecraftforge.common.ModDimension; import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.fml.CrashReportExtender; import net.minecraftforge.fml.DistExecutor; import net.minecraftforge.fml.ModLoadingContext; import net.minecraftforge.fml.client.registry.RenderingRegistry; @@ -79,7 +78,6 @@ import appeng.client.render.model.MemoryCardModel; import appeng.client.render.model.SkyCompassModel; import appeng.client.render.model.UVLModelLoader; import appeng.client.render.spatial.SpatialPylonModel; -import appeng.core.crash.ModCrashEnhancement; import appeng.core.features.registries.PartModels; import appeng.core.stats.AdvancementTriggers; import appeng.core.sync.network.NetworkHandler; @@ -117,8 +115,6 @@ public final class AppEng { proxy = DistExecutor.safeRunForDist(() -> ClientHelper::new, () -> ServerHelper::new); - CrashReportExtender.registerCrashCallable(new ModCrashEnhancement()); - CreativeTab.init(); new FacadeItemGroup(); // This call has a side-effect (adding it to the creative screen) diff --git a/src/main/java/appeng/core/crash/ModCrashEnhancement.java b/src/main/java/appeng/core/crash/ModCrashEnhancement.java deleted file mode 100644 index a5c078288..000000000 --- a/src/main/java/appeng/core/crash/ModCrashEnhancement.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * This file is part of Applied Energistics 2. - * Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved. - * - * Applied Energistics 2 is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * Applied Energistics 2 is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with Applied Energistics 2. If not, see . - */ - -package appeng.core.crash; - -import net.minecraftforge.fml.common.ICrashCallable; -import net.minecraftforge.versions.forge.ForgeVersion; - -import appeng.core.AEConfig; - -public class ModCrashEnhancement implements ICrashCallable { - - @Override - public String getLabel() { - return "AE2 Version"; - } - - @Override - public String call() throws Exception { - return AEConfig.CHANNEL + ' ' + AEConfig.VERSION + " for Forge " + ForgeVersion.getVersion(); - } - -}