blob: 45509a71e3e5d7e8fd9e712ef8b84fc6999c4cf1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package net.benjidial.nswp;
import net.benjidial.nswp.commands.*;
import org.bukkit.plugin.java.JavaPlugin;
import java.util.logging.Logger;
import java.util.logging.Level;
import java.sql.SQLException;
import java.io.File;
public class Plugin extends JavaPlugin {
public static Logger logger;
public void onEnable() {
logger = getLogger();
getDataFolder().mkdirs();
try {
Database.connect(new File(getDataFolder(), "database.db").getPath());
}
catch (SQLException ex) {
logger.log(Level.SEVERE, "Database error: (not enabling plugin)");
ex.printStackTrace();
return;
}
getCommand("wlist" ).setExecutor(new ListWaypoints());
getCommand("wsave" ).setExecutor(new SaveWaypoint());
getCommand("wtp" ).setExecutor(new TeleportToWaypoint());
getCommand("wdel" ).setExecutor(new DeleteWaypoint());
getCommand("wback" ).setExecutor(new WaypointBack());
getCommand("wrename").setExecutor(new RenameWaypoint());
}
}
|