aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0948-Fix-helmet-damage-reduction-inconsistencies.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0948-Fix-helmet-damage-reduction-inconsistencies.patch')
-rw-r--r--patches/server/0948-Fix-helmet-damage-reduction-inconsistencies.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/patches/server/0948-Fix-helmet-damage-reduction-inconsistencies.patch b/patches/server/0948-Fix-helmet-damage-reduction-inconsistencies.patch
new file mode 100644
index 0000000000..186441aa4d
--- /dev/null
+++ b/patches/server/0948-Fix-helmet-damage-reduction-inconsistencies.patch
@@ -0,0 +1,21 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Lulu13022002 <[email protected]>
+Date: Sat, 27 Apr 2024 21:51:58 +0200
+Subject: [PATCH] Fix helmet damage reduction inconsistencies
+
+Affect the falling stalactite damage type where the
+reduction is not applied like in Vanilla
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
+index b0e7d1841d71e377d5ad596a22dfafb90d4f80cc..659d38c90f20f744261190c451235dbca8352e38 100644
+--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
++++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
+@@ -1226,7 +1226,7 @@ public class CraftEventFactory {
+ modifiers.put(DamageModifier.FREEZING, freezingModifier);
+ modifierFunctions.put(DamageModifier.FREEZING, freezing);
+ }
+- if (source.is(DamageTypes.FALLING_BLOCK) || source.is(DamageTypes.FALLING_ANVIL)) {
++ if (source.is(DamageTypeTags.DAMAGES_HELMET)) { // Paper
+ modifiers.put(DamageModifier.HARD_HAT, hardHatModifier);
+ modifierFunctions.put(DamageModifier.HARD_HAT, hardHat);
+ }