mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
22 lines
564 B
Diff
22 lines
564 B
Diff
|
--- 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);
|