diff options
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/energy')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/energy/IC2ElectricItemManager.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/energy/IC2ElectricItemManager.java b/src/Java/gtPlusPlus/xmod/gregtech/api/energy/IC2ElectricItemManager.java index 311947e5e6..8bf42578cc 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/energy/IC2ElectricItemManager.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/energy/IC2ElectricItemManager.java @@ -11,7 +11,7 @@ import net.minecraft.item.ItemStack; * - handle charging, taking amount, tier, transfer limit, canProvideEnergy and simulate into account * - replace item IDs if appropriate (getChargedItemId() and getEmptyItemId()) * - update and manage the damage value for the visual charge indicator - * + * * @note If you're implementing your own variant (ISpecialElectricItem), you can delegate to the * default implementations through ElectricItem.rawManager. The default implementation is designed * to minimize its dependency on its own constraints/structure and delegates most work back to the @@ -45,7 +45,7 @@ public interface IC2ElectricItemManager { /** * Determine the charge level for the specified item. - * + * * @param itemStack ItemStack containing the electric item * @return charge level in EU */ @@ -85,7 +85,7 @@ public interface IC2ElectricItemManager { /** * Get the tool tip to display for electric items. - * + * * @param itemStack ItemStack to determine the tooltip for * @return tool tip string or null for none */ |