SPIGOT-2127: Add DamageCause.ENTITY_SWEEP_ATTACK

This commit is contained in:
md_5
2016-12-23 22:39:33 +11:00
parent 746cf0f0d7
commit 96f03d9065
3 changed files with 23 additions and 2 deletions

View 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);