From 177bdcff328e89dc0196c660bb34c74dfa9ab033 Mon Sep 17 00:00:00 2001 From: kekzdealer Date: Wed, 6 May 2020 22:24:36 +0200 Subject: Setting up IntelliJ files --- .../GTMTE_LapotronicSuperCapacitor.java | 72 ++++++++++++++-------- 1 file changed, 45 insertions(+), 27 deletions(-) (limited to 'src/main') diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java index 0e2af6ab40..5d1f00d73e 100644 --- a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java +++ b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java @@ -197,33 +197,51 @@ public class GTMTE_LapotronicSuperCapacitor extends GT_MetaTileEntity_MultiBlock } } - + return formationChecklist; + } + + + + + + + + + + + + + + + + + + + + + + + + + + @Override + public int getMaxEfficiency(ItemStack stack) { + return 10000; + } + + @Override + public int getPollutionPerTick(ItemStack stack) { + return 0; + } + + @Override + public int getDamageToComponent(ItemStack stack) { + return 0; + } + + @Override + public boolean explodesOnComponentBreak(ItemStack stack) { + return false; } - - - - - - - - - - - - - - - - - - - - - - - - - - } -- cgit