diff options
author | Noah van der Aa <[email protected]> | 2024-04-30 00:16:07 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-30 00:16:07 +0200 |
commit | 44ee092878a4a561fd565aa72cb5f2006ee64701 (patch) | |
tree | 9c205d66741f572049804538f54837ddb4b1d4d5 /patches/server/1041-Fix-helmet-damage-reduction-inconsistencies.patch | |
parent | fbe3c006751aff00e2940a1e9b99bbf15c2f2a37 (diff) | |
download | Paper-44ee092878a4a561fd565aa72cb5f2006ee64701.tar.gz Paper-44ee092878a4a561fd565aa72cb5f2006ee64701.zip |
1.20.6 (#10623)
Diffstat (limited to 'patches/server/1041-Fix-helmet-damage-reduction-inconsistencies.patch')
-rw-r--r-- | patches/server/1041-Fix-helmet-damage-reduction-inconsistencies.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/patches/server/1041-Fix-helmet-damage-reduction-inconsistencies.patch b/patches/server/1041-Fix-helmet-damage-reduction-inconsistencies.patch new file mode 100644 index 0000000000..f5b5797303 --- /dev/null +++ b/patches/server/1041-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 92a9643a31d3b753c997854a0db0ceabe883fd29..547ab158cd0cbf51da06ea97740cfce34bca651b 100644 +--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java ++++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java +@@ -1215,7 +1215,7 @@ public class CraftEventFactory { + Map<DamageModifier, Function<? super Double, Double>> modifierFunctions = new EnumMap<>(DamageModifier.class); + modifiers.put(DamageModifier.BASE, rawDamage); + modifierFunctions.put(DamageModifier.BASE, CraftEventFactory.ZERO); +- 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); + } |