mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-08 11:50:32 +01:00
59 lines
2.7 KiB
Diff
59 lines
2.7 KiB
Diff
--- a/net/minecraft/server/TileEntityConduit.java
|
|
+++ b/net/minecraft/server/TileEntityConduit.java
|
|
@@ -7,6 +7,10 @@
|
|
import java.util.UUID;
|
|
import java.util.function.Predicate;
|
|
import javax.annotation.Nullable;
|
|
+// CraftBukkit start
|
|
+import org.bukkit.craftbukkit.block.CraftBlock;
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
+// CraftBukkit end
|
|
|
|
public class TileEntityConduit extends TileEntity implements ITickable {
|
|
|
|
@@ -152,7 +156,7 @@
|
|
EntityHuman entityhuman = (EntityHuman) iterator.next();
|
|
|
|
if (this.position.m(new BlockPosition(entityhuman)) <= (double) j && entityhuman.ao()) {
|
|
- entityhuman.addEffect(new MobEffect(MobEffects.CONDUIT_POWER, 260, 0, true, true));
|
|
+ entityhuman.addEffect(new MobEffect(MobEffects.CONDUIT_POWER, 260, 0, true, true), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.CONDUIT); // CraftBukkit
|
|
}
|
|
}
|
|
|
|
@@ -169,8 +173,8 @@
|
|
this.j = this.l();
|
|
this.k = null;
|
|
} else if (this.j == null) {
|
|
- List list = this.world.a(EntityLiving.class, this.k(), (entityliving) -> {
|
|
- return entityliving instanceof IMonster && entityliving.ao();
|
|
+ List list = this.world.a(EntityLiving.class, this.k(), (Predicate<EntityLiving>) (entitylivingx) -> { // CraftBukkit - decompile error
|
|
+ return entitylivingx instanceof IMonster && entitylivingx.ao(); // CraftBukkit - decompile error
|
|
});
|
|
|
|
if (!list.isEmpty()) {
|
|
@@ -181,8 +185,13 @@
|
|
}
|
|
|
|
if (this.j != null) {
|
|
- this.world.a((EntityHuman) null, this.j.locX, this.j.locY, this.j.locZ, SoundEffects.BLOCK_CONDUIT_ATTACK_TARGET, SoundCategory.BLOCKS, 1.0F, 1.0F);
|
|
- this.j.damageEntity(DamageSource.MAGIC, 4.0F);
|
|
+ // CraftBukkit start
|
|
+ CraftEventFactory.blockDamage = CraftBlock.at(this.world, this.position);
|
|
+ if (this.j.damageEntity(DamageSource.MAGIC, 4.0F)) {
|
|
+ this.world.a((EntityHuman) null, this.j.locX, this.j.locY, this.j.locZ, SoundEffects.BLOCK_CONDUIT_ATTACK_TARGET, SoundCategory.BLOCKS, 1.0F, 1.0F);
|
|
+ }
|
|
+ CraftEventFactory.blockDamage = null;
|
|
+ // CraftBukkit end
|
|
}
|
|
|
|
if (entityliving != this.j) {
|
|
@@ -215,7 +224,7 @@
|
|
|
|
@Nullable
|
|
private EntityLiving l() {
|
|
- List list = this.world.a(EntityLiving.class, this.k(), (entityliving) -> {
|
|
+ List list = this.world.a(EntityLiving.class, this.k(), (Predicate<EntityLiving>) (entityliving) -> { // CraftBukkit - decompile error
|
|
return entityliving.getUniqueID().equals(this.k);
|
|
});
|
|
|