Fix base damage for trident (#10948)
This commit is contained in:
@ -17,6 +17,13 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
|
|
||||||
public ThrownTrident(Level world, LivingEntity owner, ItemStack stack) {
|
public ThrownTrident(Level world, LivingEntity owner, ItemStack stack) {
|
||||||
super(EntityType.TRIDENT, owner, world, stack, (ItemStack) null);
|
super(EntityType.TRIDENT, owner, world, stack, (ItemStack) null);
|
||||||
|
+ this.setBaseDamage(net.minecraft.world.item.TridentItem.BASE_DAMAGE); // Paper - Allow trident custom damage
|
||||||
|
this.entityData.set(ThrownTrident.ID_LOYALTY, this.getLoyaltyFromItem(stack));
|
||||||
|
this.entityData.set(ThrownTrident.ID_FOIL, stack.hasFoil());
|
||||||
|
}
|
||||||
|
|
||||||
|
public ThrownTrident(Level world, double x, double y, double z, ItemStack stack) {
|
||||||
|
super(EntityType.TRIDENT, x, y, z, world, stack, stack);
|
||||||
+ this.setBaseDamage(net.minecraft.world.item.TridentItem.BASE_DAMAGE); // Paper - Allow trident custom damage
|
+ this.setBaseDamage(net.minecraft.world.item.TridentItem.BASE_DAMAGE); // Paper - Allow trident custom damage
|
||||||
this.entityData.set(ThrownTrident.ID_LOYALTY, this.getLoyaltyFromItem(stack));
|
this.entityData.set(ThrownTrident.ID_LOYALTY, this.getLoyaltyFromItem(stack));
|
||||||
this.entityData.set(ThrownTrident.ID_FOIL, stack.hasFoil());
|
this.entityData.set(ThrownTrident.ID_FOIL, stack.hasFoil());
|
||||||
|
|||||||
Reference in New Issue
Block a user