aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2021-06-06 10:54:49 -0600
committerBryson Steck <steck.bryson@gmail.com>2021-06-06 10:54:49 -0600
commit6d718d762735cbdd46a17c527712176fccd2a7da (patch)
tree10baa19041bc72c01647cb6260c475bf02fe070d /src
parent2968f7b9c1797c8ad125ef4a904da5f09b7a19ad (diff)
downloadresurrection-6d718d762735cbdd46a17c527712176fccd2a7da.tar
resurrection-6d718d762735cbdd46a17c527712176fccd2a7da.tar.gz
resurrection-6d718d762735cbdd46a17c527712176fccd2a7da.tar.bz2
seeing if playerlistener class is working properly
Diffstat (limited to 'src')
-rw-r--r--src/net/brysonsteck/PlayerListener.java1
-rw-r--r--src/net/brysonsteck/Resurrection.java3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/net/brysonsteck/PlayerListener.java b/src/net/brysonsteck/PlayerListener.java
index 8a57624..c9a175c 100644
--- a/src/net/brysonsteck/PlayerListener.java
+++ b/src/net/brysonsteck/PlayerListener.java
@@ -8,6 +8,7 @@ import org.bukkit.event.entity.PlayerDeathEvent;
public class PlayerListener implements Listener {
@EventHandler
public void onDeath(PlayerDeathEvent e) {
+ System.out.println("Resurrection: A player has died!");
Player p = e.getEntity();
Long timeOfDeath = System.currentTimeMillis();
Long resurrectionTime = timeOfDeath + 86400000;
diff --git a/src/net/brysonsteck/Resurrection.java b/src/net/brysonsteck/Resurrection.java
index 74fc8af..25008b8 100644
--- a/src/net/brysonsteck/Resurrection.java
+++ b/src/net/brysonsteck/Resurrection.java
@@ -19,7 +19,8 @@ public class Resurrection extends JavaPlugin {
@Override
public void onEnable() {
super.onEnable();
- System.out.println("I'm alive!");
+ System.out.println("Resurrection: I'm alive!");
+ PlayerListener playerListener = new PlayerListener();
}
// end of spigot things