2016-12-23 12:39:33 +01:00
|
|
|
--- a/net/minecraft/server/DamageSource.java
|
|
|
|
+++ b/net/minecraft/server/DamageSource.java
|
2018-07-15 02:00:00 +02:00
|
|
|
@@ -35,6 +35,18 @@
|
2016-12-23 12:39:33 +01:00
|
|
|
private boolean D;
|
2018-07-15 02:00:00 +02:00
|
|
|
private boolean E;
|
|
|
|
public final String translationIndex;
|
2016-12-23 12:39:33 +01:00
|
|
|
+ // 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);
|