trying initializing first

This commit is contained in:
Bryson Steck 2021-06-06 18:50:47 -06:00
parent 18704e7917
commit 357ef1da6c
3 changed files with 6 additions and 3 deletions

View file

@ -34,9 +34,12 @@ public class PlayerListener implements Listener {
Player p = e.getPlayer();
p.setGameMode(GameMode.ADVENTURE);
p.addPotionEffect(new PotionEffect(PotionEffectType.INVISIBILITY, 200, 10, false));
p.addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, 200, 10, false));
p.addPotionEffect(new PotionEffect(PotionEffectType.SLOW, 200, 10, false));
PotionEffect invisibility = new PotionEffect(PotionEffectType.INVISIBILITY, 200, 10, false);
PotionEffect blindness = new PotionEffect(PotionEffectType.BLINDNESS, 200, 10, false);
PotionEffect slowness = new PotionEffect(PotionEffectType.SLOW, 200, 10, false);
invisibility.apply(p);
blindness.apply(p);
slowness.apply(p);
p.setNoDamageTicks(1728000);
}