Started work on profiling when prisoners get jailed #12.

This only works for the sql right now, next commit will handle flatfile.
This commit is contained in:
graywolf336
2014-03-06 16:51:25 -06:00
parent ac6a5b23cb
commit 5f6807fc24
3 changed files with 65 additions and 0 deletions

View File

@ -12,6 +12,7 @@ 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.JailingListener;
import com.graywolf336.jail.listeners.MoveProtectionListener;
import com.graywolf336.jail.listeners.PlayerListener;
import com.graywolf336.jail.listeners.ProtectionListener;
@ -61,6 +62,7 @@ public class JailMain extends JavaPlugin {
plm.registerEvents(new BlockListener(this), this);
plm.registerEvents(new EntityListener(this), this);
plm.registerEvents(new HandCuffListener(this), this);
plm.registerEvents(new JailingListener(this), this);
plm.registerEvents(new PlayerListener(this), this);
plm.registerEvents(new ProtectionListener(this), this);