PaperMC/paper-server/nms-patches/net/minecraft/world/damagesource/DamageSource.patch

22 lines
605 B
Diff
Raw Normal View History

2021-03-15 23:00:00 +01:00
--- a/net/minecraft/world/damagesource/DamageSource.java
+++ b/net/minecraft/world/damagesource/DamageSource.java
@@ -49,6 +49,18 @@
private boolean isFall;
private boolean noAggro;
public final String msgId;
+ // CraftBukkit start
+ private boolean sweep;
+
+ public boolean isSweep() {
+ return sweep;
+ }
+
+ public DamageSource sweep() {
+ this.sweep = true;
+ return this;
+ }
+ // CraftBukkit end
public static DamageSource fallingBlock(Entity entity) {
return (new EntityDamageSource("fallingBlock", entity)).damageHelmet();