Add the HandCuffListener

This commit is contained in:
graywolf336
2014-01-01 16:22:40 -06:00
parent b22fad16c4
commit f1451f4179
2 changed files with 114 additions and 0 deletions

View File

@ -10,6 +10,7 @@ import com.graywolf336.jail.command.CommandHandler;
import com.graywolf336.jail.enums.Settings;
import com.graywolf336.jail.listeners.BlockListener;
import com.graywolf336.jail.listeners.EntityListener;
import com.graywolf336.jail.listeners.HandCuffListener;
import com.graywolf336.jail.listeners.PlayerListener;
/**
@ -41,6 +42,7 @@ public class JailMain extends JavaPlugin {
pm = new PrisonerManager(this);
PluginManager plm = this.getServer().getPluginManager();
plm.registerEvents(new HandCuffListener(this), this);
plm.registerEvents(new BlockListener(), this);
plm.registerEvents(new EntityListener(), this);
plm.registerEvents(new PlayerListener(this), this);