mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
Fire EntityDamageByEntityEvent for unowned wither skulls patch (#10244)
This commit is contained in:
parent
9c4bb0df0e
commit
8870d22bc7
@ -0,0 +1,19 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: RodneyMKay <36546810+RodneyMKay@users.noreply.github.com>
|
||||||
|
Date: Sun, 11 Feb 2024 20:05:11 +0100
|
||||||
|
Subject: [PATCH] Fire EntityDamageByEntityEvent for unowned wither skulls
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/world/entity/projectile/WitherSkull.java b/src/main/java/net/minecraft/world/entity/projectile/WitherSkull.java
|
||||||
|
index 35e76fc8667d9fde5a8fc426699a617fb0a08e4b..5c7a6fe97b1f0b55b4a5dddbb684e4424688f866 100644
|
||||||
|
--- a/src/main/java/net/minecraft/world/entity/projectile/WitherSkull.java
|
||||||
|
+++ b/src/main/java/net/minecraft/world/entity/projectile/WitherSkull.java
|
||||||
|
@@ -72,7 +72,7 @@ public class WitherSkull extends AbstractHurtingProjectile {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
- flag = entity.hurt(this.damageSources().magic(), 5.0F);
|
||||||
|
+ flag = entity.hurt(this.damageSources().magic().customCausingEntity(this), 5.0F); // Paper - Fire EntityDamageByEntityEvent for unowned wither skulls
|
||||||
|
}
|
||||||
|
|
||||||
|
if (flag && entity instanceof LivingEntity) {
|
Loading…
Reference in New Issue
Block a user