Remove more unimportant configuration options

This commit is contained in:
Magnus Ulf
2019-01-24 11:22:39 +01:00
parent 8d9392eb87
commit c89ee61b34
5 changed files with 9 additions and 106 deletions

View File

@@ -1,43 +0,0 @@
package com.massivecraft.factions.cmd;
public class CmdFactionsXPlaceholder extends FactionsCommand
{
// -------------------------------------------- //
// FIELDS
// -------------------------------------------- //
public String extensionName;
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
public CmdFactionsXPlaceholder(String extensionName, String... aliases)
{
// Fields
this.extensionName = extensionName;
this.setSetupEnabled(false);
// Aliases
this.addAliases(aliases);
// Desc
this.setDesc("Use " + extensionName);
// Parameters
this.setOverflowSensitive(false);
}
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
@Override
public void perform()
{
msg("<b>The extension <h>%s <b>isn't installed.", this.extensionName);
msg("<g>Learn more and download the extension here:");
msg("<aqua>https://www.massivecraft.com/%s", this.extensionName.toLowerCase());
}
}