1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Did not mean to make this final yet

This commit is contained in:
TheBusyBiscuit 2020-10-30 19:42:58 +01:00
parent 508b5aa198
commit f197e26a9c

View File

@ -223,7 +223,7 @@ public abstract class AGenerator extends AbstractEnergyProvider {
* *
* @return The max amount of electricity this Block can store. * @return The max amount of electricity this Block can store.
*/ */
public final int getCapacity() { public int getCapacity() {
return energyCapacity; return energyCapacity;
} }
@ -233,7 +233,7 @@ public abstract class AGenerator extends AbstractEnergyProvider {
* @return The rate of energy consumption * @return The rate of energy consumption
*/ */
@Override @Override
public final int getEnergyProduction() { public int getEnergyProduction() {
return energyProducedPerTick; return energyProducedPerTick;
} }