Initial commit

This commit is contained in:
Paul Reilly
2020-07-11 14:28:42 -05:00
commit 3b6479cfc6
12 changed files with 284 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package dev.coomware;
import org.bukkit.Server;
import org.bukkit.plugin.java.JavaPlugin;
public class Uncraftables extends JavaPlugin {
public static Uncraftables plugin;
public Server server;
public CraftingUtils util;
@Override
public void onLoad() {
plugin = this;
server = getServer();
util = new CraftingUtils(this);
}
@Override
public void onEnable() {
new Craftable(this).craftables();
}
@Override
public void onDisable() {
}
}