Fix hologram

This commit is contained in:
Edith Boles 2021-10-04 15:48:14 -07:00
parent f6932e59d8
commit 21004d4cbe
2 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,7 @@ public final class Events implements Listener {
} }
Collections.sort(uuids); Collections.sort(uuids);
player.playSound(location, Sound.CLICK, 1, 1); player.playSound(location, Sound.CLICK, 0.5f, 1);
if (uuids.size() == 0) { if (uuids.size() == 0) {
player.sendMessage(ChatColor.YELLOW + "No targets online!"); player.sendMessage(ChatColor.YELLOW + "No targets online!");
} else { } else {

View File

@ -38,6 +38,7 @@ public class FakePlayerRitual extends Ritual {
fp_livingEntity.setHealth(100.0); fp_livingEntity.setHealth(100.0);
fp_livingEntity.addPotionEffect(new PotionEffect(PotionEffectType.DAMAGE_RESISTANCE, 200, 100)); fp_livingEntity.addPotionEffect(new PotionEffect(PotionEffectType.DAMAGE_RESISTANCE, 200, 100));
fp_livingEntity.addPotionEffect(new PotionEffect(PotionEffectType.WITHER, 200, 1)); fp_livingEntity.addPotionEffect(new PotionEffect(PotionEffectType.WITHER, 200, 1));
fp_livingEntity.setCustomNameVisible(true);
Slime fpSlime = (Slime)fp_livingEntity; Slime fpSlime = (Slime)fp_livingEntity;
fpSlime.setSize(1); fpSlime.setSize(1);
} }