Skip to content

Commit c2b9829

Browse files
committed
リスナーを登録
1 parent 570e86a commit c2b9829

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/com/github/elic0de/thejpspit/TheJpsPit.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,20 @@
55
import com.github.elic0de.thejpspit.database.Database;
66
import com.github.elic0de.thejpspit.database.SqLiteDatabase;
77
import com.github.elic0de.thejpspit.game.Game;
8+
import com.github.elic0de.thejpspit.listener.CombatTagger;
89
import com.github.elic0de.thejpspit.listener.EventListener;
910
import com.github.elic0de.thejpspit.network.PluginMessageReceiver;
1011
import com.github.elic0de.thejpspit.player.PitPlayer;
1112
import com.github.elic0de.thejpspit.player.PitPlayerManager;
1213
import com.github.elic0de.thejpspit.queue.QueueManager;
1314
import com.github.elic0de.thejpspit.task.QueueTask;
15+
import com.github.elic0de.thejpspit.util.killAssistHelper.KillAssistHelper;
1416
import com.github.elic0de.thejpspit.util.KillRatingHelper;
1517
import java.util.Optional;
1618
import java.util.concurrent.atomic.AtomicBoolean;
1719
import java.util.logging.Level;
1820
import org.bukkit.Bukkit;
1921
import org.bukkit.GameRule;
20-
import org.bukkit.entity.Player;
2122
import org.bukkit.plugin.java.JavaPlugin;
2223

2324
public 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

0 commit comments

Comments
 (0)