diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-12-22 22:33:04 -0700 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-12-22 22:33:04 -0700 |
commit | 95166d5f10abec2fe6bd098f70316660fa1b775e (patch) | |
tree | 68e64af60f9a3af5979a20464352ddc0183bc136 | |
parent | 2a310957ae28506c6ed8dc6f74bc7fadc64fd510 (diff) | |
download | resurrection-95166d5f10abec2fe6bd098f70316660fa1b775e.tar resurrection-95166d5f10abec2fe6bd098f70316660fa1b775e.tar.gz resurrection-95166d5f10abec2fe6bd098f70316660fa1b775e.tar.bz2 |
fix seems to work
-rw-r--r-- | out/artifacts/Resurrection_jar/Resurrection.jar | bin | 1606103 -> 1606120 bytes | |||
-rw-r--r-- | src/net/brysonsteck/Resurrection/player/PlayerListener.java | 1 | ||||
-rw-r--r-- | src/net/brysonsteck/Resurrection/plugin.yml | 2 |
3 files changed, 2 insertions, 1 deletions
diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar Binary files differindex ca51bf6..7feea2f 100644 --- a/out/artifacts/Resurrection_jar/Resurrection.jar +++ b/out/artifacts/Resurrection_jar/Resurrection.jar diff --git a/src/net/brysonsteck/Resurrection/player/PlayerListener.java b/src/net/brysonsteck/Resurrection/player/PlayerListener.java index 0bde5e9..6971f84 100644 --- a/src/net/brysonsteck/Resurrection/player/PlayerListener.java +++ b/src/net/brysonsteck/Resurrection/player/PlayerListener.java @@ -62,6 +62,7 @@ public class PlayerListener implements Listener { playerSplit[1] = String.valueOf(dead); timeToResurrection = 0; playerSplit[2] = String.valueOf(timeToResurrection); + Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + p.getDisplayName() + " has resurrected!"); } if (!dead) { diff --git a/src/net/brysonsteck/Resurrection/plugin.yml b/src/net/brysonsteck/Resurrection/plugin.yml index b436e22..6277c7b 100644 --- a/src/net/brysonsteck/Resurrection/plugin.yml +++ b/src/net/brysonsteck/Resurrection/plugin.yml @@ -1,7 +1,7 @@ main: net.brysonsteck.Resurrection.Resurrection name: Resurrection author: 'Bryson Steck' -version: '1.1.1' +version: '1.2' website: https://brysonsteck.net/resurrection.html description: Makes players wait large amounts of time before respawning! database: false |