mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-19 21:09:05 +00:00
21 lines
588 B
Diff
21 lines
588 B
Diff
--- a/net/minecraft/world/damagesource/DamageSource.java
|
|
+++ b/net/minecraft/world/damagesource/DamageSource.java
|
|
@@ -52,6 +52,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 b(EntityLiving entityliving) {
|
|
return new EntityDamageSource("sting", entityliving);
|