14 lines
371 B
Java
14 lines
371 B
Java
package net.knarcraft.factions.cmd;
|
|
|
|
public class CmdFactionsPowerboostFactionAdd extends CmdFactionsPowerboostFactionAbstract {
|
|
// -------------------------------------------- //
|
|
// OVERRIDE
|
|
// -------------------------------------------- //
|
|
|
|
@Override
|
|
public double calcNewPowerboost(double current, double d) {
|
|
return current + d;
|
|
}
|
|
|
|
}
|