768f57ae5e
Compass: no longer teleports if not holding compass (on click) SSM: various balance changes.
16 lines
294 B
Java
16 lines
294 B
Java
package nautilus.game.arcade.kit.perks;
|
|
|
|
import mineplex.core.common.util.C;
|
|
import nautilus.game.arcade.kit.Perk;
|
|
|
|
public class PerkNotFinished extends Perk
|
|
{
|
|
public PerkNotFinished()
|
|
{
|
|
super("Not Completed", new String[]
|
|
{
|
|
C.cRed + C.Bold + "KIT IS NOT FINISHED",
|
|
});
|
|
}
|
|
}
|