diff --git a/src/main/java/electroblob/wizardry/entity/construct/EntityRadiantTotem.java b/src/main/java/electroblob/wizardry/entity/construct/EntityRadiantTotem.java index c329eb3b..13a1b880 100644 --- a/src/main/java/electroblob/wizardry/entity/construct/EntityRadiantTotem.java +++ b/src/main/java/electroblob/wizardry/entity/construct/EntityRadiantTotem.java @@ -91,8 +91,8 @@ public class EntityRadiantTotem extends EntityScaledConstruct { targetsRemaining--; if(world.isRemote){ - ParticleBuilder.create(Type.BEAM).pos(this.getPositionVector()).target(ally) - .clr(1, 0.6f + 0.3f * world.rand.nextFloat(), 0.2f).spawn(world); + ParticleBuilder.create(Type.BEAM).pos(this.getPositionVector().add(0, height/2, 0)) + .target(ally).clr(1, 0.6f + 0.3f * world.rand.nextFloat(), 0.2f).spawn(world); } } }