From 1e32b6f67e1f10479a89aba73d889c267d678786 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Sun, 6 Jun 2021 18:00:18 -0600 Subject: potions arent adding after respawn --- out/artifacts/Resurrection_jar/Resurrection.jar | Bin 1335900 -> 1335783 bytes .../brysonsteck/Resurrection/PlayerListener.class | Bin 3402 -> 3031 bytes .../brysonsteck/Resurrection/PlayerListener.java | 13 ++++++++----- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/out/artifacts/Resurrection_jar/Resurrection.jar b/out/artifacts/Resurrection_jar/Resurrection.jar index dc6854b..53c1768 100644 Binary files a/out/artifacts/Resurrection_jar/Resurrection.jar and b/out/artifacts/Resurrection_jar/Resurrection.jar differ diff --git a/out/production/Resurrection/net/brysonsteck/Resurrection/PlayerListener.class b/out/production/Resurrection/net/brysonsteck/Resurrection/PlayerListener.class index 63ceec4..17841e0 100644 Binary files a/out/production/Resurrection/net/brysonsteck/Resurrection/PlayerListener.class and b/out/production/Resurrection/net/brysonsteck/Resurrection/PlayerListener.class differ diff --git a/src/net/brysonsteck/Resurrection/PlayerListener.java b/src/net/brysonsteck/Resurrection/PlayerListener.java index f0c5d6e..b94e83d 100644 --- a/src/net/brysonsteck/Resurrection/PlayerListener.java +++ b/src/net/brysonsteck/Resurrection/PlayerListener.java @@ -17,30 +17,33 @@ public class PlayerListener implements Listener { public void onDeath(PlayerDeathEvent e) { System.out.println("Resurrection: A player has died!"); Player p = e.getEntity(); - p.setGameMode(GameMode.SPECTATOR); Long timeOfDeath = System.currentTimeMillis(); Long resurrectionTime = timeOfDeath + 86400000; TimeCheck death = new TimeCheck(timeOfDeath); - TimeCheck resurrect = new TimeCheck(timeOfDeath + 86400000); + TimeCheck resurrect = new TimeCheck((timeOfDeath + 86400000) - timeOfDeath); String deathFormatted = death.formatTime(); String resurrectFormatted = resurrect.formatTime(); - p.sendMessage("You have died!! You will be able to respawn in the next " + resurrectFormatted); + p.sendMessage("You have died!! You will be able to respawn in the next 24 hours."); } @EventHandler public void onPlayerRespawn(PlayerRespawnEvent e) { Player p = e.getPlayer(); - p.addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, 86400, 255)); + p.setGameMode(GameMode.ADVENTURE); + p.addPotionEffect(new PotionEffect(PotionEffectType.INVISIBILITY, 1728000, 10, false)); + p.addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, 1728000, 10, false)); + p.addPotionEffect(new PotionEffect(PotionEffectType.SLOW, 1728000, 10, false)); + p.setNoDamageTicks(1728000); } @EventHandler public void onPlayerMove(PlayerMoveEvent e) { Player p = e.getPlayer(); Location location = p.getLocation(); - if (p.getGameMode() == GameMode.SPECTATOR && p.hasPotionEffect(PotionEffectType.BLINDNESS)) { + if (p.getGameMode() == GameMode.ADVENTURE) { p.teleport(location); } } -- cgit v1.2.3