mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-05 14:42:22 -07:00
SPIGOT-2127: Add DamageCause.ENTITY_SWEEP_ATTACK
This commit is contained in:
21
nms-patches/DamageSource.patch
Normal file
21
nms-patches/DamageSource.patch
Normal file
@@ -0,0 +1,21 @@
|
||||
--- a/net/minecraft/server/DamageSource.java
|
||||
+++ b/net/minecraft/server/DamageSource.java
|
||||
@@ -34,6 +34,18 @@
|
||||
private boolean C;
|
||||
private boolean D;
|
||||
public String translationIndex;
|
||||
+ // CraftBukkit start
|
||||
+ private boolean sweep;
|
||||
+
|
||||
+ public boolean isSweep() {
|
||||
+ return sweep;
|
||||
+ }
|
||||
+
|
||||
+ public DamageSource sweep() {
|
||||
+ this.sweep = true;
|
||||
+ return this;
|
||||
+ }
|
||||
+ // CraftBukkit end
|
||||
|
||||
public static DamageSource mobAttack(EntityLiving entityliving) {
|
||||
return new EntityDamageSource("mob", entityliving);
|
Reference in New Issue
Block a user