14 lines
396 B
Java
14 lines
396 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
public class CmdFactionsPowerboostPlayerShow extends CmdFactionsPowerboostPlayerAbstract {
|
|
// -------------------------------------------- //
|
|
// OVERRIDE
|
|
// -------------------------------------------- //
|
|
|
|
@Override
|
|
public double calcNewPowerboost(double current, double d) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
}
|