mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 12:02:36 +01:00
12 lines
836 B
Diff
12 lines
836 B
Diff
|
--- a/net/minecraft/world/entity/monster/EntityDrowned.java
|
||
|
+++ b/net/minecraft/world/entity/monster/EntityDrowned.java
|
||
|
@@ -239,7 +239,7 @@
|
||
|
|
||
|
@Override
|
||
|
public void performRangedAttack(EntityLiving entityliving, float f) {
|
||
|
- EntityThrownTrident entitythrowntrident = new EntityThrownTrident(this.level, this, new ItemStack(Items.TRIDENT));
|
||
|
+ EntityThrownTrident entitythrowntrident = new EntityThrownTrident(this.level, this, this.getItemInHand(net.minecraft.world.entity.projectile.ProjectileHelper.getWeaponHoldingHand(this, Items.TRIDENT))); // CraftBukkit - Use Trident in hand like skeletons (SPIGOT-7025)
|
||
|
double d0 = entityliving.getX() - this.getX();
|
||
|
double d1 = entityliving.getY(0.3333333333333333D) - entitythrowntrident.getY();
|
||
|
double d2 = entityliving.getZ() - this.getZ();
|