Skip to content

Commit

Permalink
fix: water bullet shooting location
Browse files Browse the repository at this point in the history
  • Loading branch information
sekwah41 committed Aug 13, 2022
1 parent 0adb2b9 commit b8d443a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public WaterBulletJutsuEntity(EntityType<? extends AbstractNonGlowingHurtingProj
}

public WaterBulletJutsuEntity(LivingEntity player, double xVel, double yVel, double zVel) {
this(NarutoEntities.WATER_BULLET_JUTSU.get(), player.getX(), player.getEyeY() - 0.6f, player.getZ(), xVel, yVel, zVel, player.getLevel());
this(NarutoEntities.WATER_BULLET_JUTSU.get(), player.getX(), player.getEyeY() - 0.15f, player.getZ(), xVel, yVel, zVel, player.getLevel());
this.setOwner(player);
this.setRot(player.getYRot(), player.getXRot());
}
Expand Down

0 comments on commit b8d443a

Please sign in to comment.