Archived
0

Deleted unnecessary stuff, converted to maven project

This commit is contained in:
Pepich
2017-11-15 18:54:15 +01:00
parent 51380d886e
commit 732ef31f2e
3 changed files with 19 additions and 9 deletions

View File

@@ -33,7 +33,6 @@ public class Faucet extends JavaPlugin
{
plugin = this;
ChatAPI.initialize(this);
// Configger.init();
MysqlHandler.init();
}

View File

@@ -32,14 +32,6 @@ public interface Module
public default void onDisable()
{}
/** Gets called on registration of the module, when this option is selected for command registration
*
* @return The String used for the CommandManager to register the commands. */
public default String getCommandString()
{
return null;
}
/** This method gets run the very first time a module gets loaded. You can use this to set up file structures or background data. */
public default void firstLoad()
{}