From aa1e00af1c3f290e0802e87bd01f105da8c94cd1 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Wed, 21 Jul 2021 21:48:54 -0600 Subject: forgot to update resurrect command --- out/artifacts/Resurrection_jar/Resurrection.jar | Bin 1352758 -> 1352839 bytes .../Resurrection/commands/CommandResurrect.java | 6 ++++++ 2 files changed, 6 insertions(+) diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar index a3741f6..ae2767d 100644 Binary files a/out/artifacts/Resurrection_jar/Resurrection.jar and b/out/artifacts/Resurrection_jar/Resurrection.jar differ 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."); -- cgit v1.2.3