File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/main/java/com/github/elic0de/thejpspit Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 55import com .github .elic0de .thejpspit .database .Database ;
66import com .github .elic0de .thejpspit .database .SqLiteDatabase ;
77import com .github .elic0de .thejpspit .game .Game ;
8+ import com .github .elic0de .thejpspit .listener .CombatTagger ;
89import com .github .elic0de .thejpspit .listener .EventListener ;
910import com .github .elic0de .thejpspit .network .PluginMessageReceiver ;
1011import com .github .elic0de .thejpspit .player .PitPlayer ;
1112import com .github .elic0de .thejpspit .player .PitPlayerManager ;
1213import com .github .elic0de .thejpspit .queue .QueueManager ;
1314import com .github .elic0de .thejpspit .task .QueueTask ;
15+ import com .github .elic0de .thejpspit .util .killAssistHelper .KillAssistHelper ;
1416import com .github .elic0de .thejpspit .util .KillRatingHelper ;
1517import java .util .Optional ;
1618import java .util .concurrent .atomic .AtomicBoolean ;
1719import java .util .logging .Level ;
1820import org .bukkit .Bukkit ;
1921import org .bukkit .GameRule ;
20- import org .bukkit .entity .Player ;
2122import org .bukkit .plugin .java .JavaPlugin ;
2223
2324public final class TheJpsPit extends JavaPlugin {
@@ -106,6 +107,8 @@ private void registerCommands() {
106107
107108 private void registerListener () {
108109 new EventListener ();
110+ new CombatTagger ();
111+ new KillAssistHelper ();
109112 }
110113
111114 @ Override
You can’t perform that action at this time.
0 commit comments