Move NPC particles up slightly

This commit is contained in:
PikaMug 2020-04-12 02:26:14 -04:00
parent 3536a2fdb9
commit b7f675fb1b

View File

@ -66,8 +66,8 @@ public class NpcEffectThread implements Runnable {
} }
if (plugin.getDependencies().getCitizens() != null) { if (plugin.getDependencies().getCitizens() != null) {
Location eyeLoc = npc.getEntity().getLocation(); Location eyeLoc = npc.getEntity().getLocation();
eyeLoc.setY(eyeLoc.getY() + 1.5); eyeLoc.setY(eyeLoc.getY() + 2);
ParticleProvider.sendToPlayer(player, eyeLoc, effectType); ParticleProvider.sendToPlayer(player, eyeLoc, effectType.toUpperCase());
} }
} }
} }