diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-07-21 21:48:54 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-07-21 21:48:54 -0600 |
commit | aa1e00af1c3f290e0802e87bd01f105da8c94cd1 (patch) | |
tree | fc8f039865e4d2d9a14c809225110df7d5b0d22a /src/net/brysonsteck/Resurrection | |
parent | a227af77534486dcebf583b586c581be18ff78e7 (diff) | |
download | resurrection-aa1e00af1c3f290e0802e87bd01f105da8c94cd1.tar resurrection-aa1e00af1c3f290e0802e87bd01f105da8c94cd1.tar.gz resurrection-aa1e00af1c3f290e0802e87bd01f105da8c94cd1.tar.bz2 |
forgot to update resurrect command
Diffstat (limited to 'src/net/brysonsteck/Resurrection')
-rw-r--r-- | src/net/brysonsteck/Resurrection/commands/CommandResurrect.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java index 75c280d..b573349 100644 --- a/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java +++ b/src/net/brysonsteck/Resurrection/commands/CommandResurrect.java @@ -33,6 +33,9 @@ public class CommandResurrect implements CommandExecutor { } Bukkit.broadcastMessage(ChatColor.YELLOW +""+ ChatColor.BOLD + strings[0] + " has been resurrected manually by an admin!"); removeDeath(resurrectPlayer); + if (p.getBedSpawnLocation() != null) { + p.teleport(p.getBedSpawnLocation()); + } return true; } else { p.sendMessage(ChatColor.RED + strings[0] + " is not dead! Failed to resurrect."); @@ -59,6 +62,9 @@ public class CommandResurrect implements CommandExecutor { } Bukkit.broadcastMessage(strings[0] + " has been resurrected manually by an admin!"); removeDeath(resurrectPlayer); + if (resurrectPlayer.getBedSpawnLocation() != null) { + resurrectPlayer.teleport(resurrectPlayer.getBedSpawnLocation()); + } return true; } else { System.out.println(strings[0] + " is not dead! Failed to resurrect."); |