123 lines
7.1 KiB
Diff
123 lines
7.1 KiB
Diff
|
From e67d57bd1c9073fe848eda9eb7a7e459a838c108 Mon Sep 17 00:00:00 2001
|
||
|
From: Hugo Manrique <hugmanrique@gmail.com>
|
||
|
Date: Mon, 23 Jul 2018 14:22:26 +0200
|
||
|
Subject: [PATCH] Vanished players don't have rights
|
||
|
|
||
|
|
||
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
||
|
index 8dd589aae..57a4481c5 100644
|
||
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
||
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
||
|
@@ -94,7 +94,7 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
||
|
private static double e = 1.0D;
|
||
|
private final EntityTypes<?> f;
|
||
|
private int id;
|
||
|
- public boolean i;
|
||
|
+ public boolean i; public final boolean blocksEntitySpawning() { return this.i; } // Paper - OBFHELPER
|
||
|
public final List<Entity> passengers;
|
||
|
protected int j;
|
||
|
private Entity vehicle;
|
||
|
diff --git a/src/main/java/net/minecraft/server/IEntityAccess.java b/src/main/java/net/minecraft/server/IEntityAccess.java
|
||
|
index bf7e0d17e..c5d5876c2 100644
|
||
|
--- a/src/main/java/net/minecraft/server/IEntityAccess.java
|
||
|
+++ b/src/main/java/net/minecraft/server/IEntityAccess.java
|
||
|
@@ -22,9 +22,18 @@ public interface IEntityAccess {
|
||
|
return this.getEntities(entity, axisalignedbb, IEntitySelector.f);
|
||
|
}
|
||
|
|
||
|
+ // Paper start
|
||
|
default boolean a(@Nullable Entity entity, VoxelShape voxelshape) {
|
||
|
+ return this.checkEntityCollision(entity, voxelshape, false);
|
||
|
+ }
|
||
|
+ default boolean checkEntityCollision(Entity entity, VoxelShape voxelshape, boolean checkCanSee) {
|
||
|
return voxelshape.isEmpty() ? true : this.getEntities(entity, voxelshape.getBoundingBox()).stream().filter((entity1) -> {
|
||
|
+ if (entity instanceof EntityPlayer && entity1 instanceof EntityPlayer
|
||
|
+ && !((EntityPlayer)entity).getBukkitEntity().canSee(((EntityPlayer)entity1).getBukkitEntity())) {
|
||
|
+ return false;
|
||
|
+ }
|
||
|
return !entity1.dead && entity1.i && (entity == null || !entity1.x(entity));
|
||
|
+ // Paper end
|
||
|
}).noneMatch((entity1) -> {
|
||
|
return VoxelShapes.c(voxelshape, VoxelShapes.a(entity1.getBoundingBox()), OperatorBoolean.AND);
|
||
|
});
|
||
|
@@ -147,7 +156,7 @@ public interface IEntityAccess {
|
||
|
|
||
|
@Nullable
|
||
|
default <T extends EntityLiving> T a(Class<? extends T> oclass, PathfinderTargetCondition pathfindertargetcondition, @Nullable EntityLiving entityliving, double d0, double d1, double d2, AxisAlignedBB axisalignedbb) {
|
||
|
- return this.a(this.a(oclass, axisalignedbb, (Predicate) null), pathfindertargetcondition, entityliving, d0, d1, d2);
|
||
|
+ return this.a(this.a(oclass, axisalignedbb, (Predicate<T>) null), pathfindertargetcondition, entityliving, d0, d1, d2); // Paper - decompile fix
|
||
|
}
|
||
|
|
||
|
@Nullable
|
||
|
@@ -157,7 +166,7 @@ public interface IEntityAccess {
|
||
|
Iterator iterator = list.iterator();
|
||
|
|
||
|
while (iterator.hasNext()) {
|
||
|
- T t1 = (EntityLiving) iterator.next();
|
||
|
+ T t1 = (T) iterator.next(); // Paper - decompile fix
|
||
|
|
||
|
if (pathfindertargetcondition.a(entityliving, t1)) {
|
||
|
double d4 = t1.e(d0, d1, d2);
|
||
|
@@ -193,7 +202,7 @@ public interface IEntityAccess {
|
||
|
Iterator iterator = list.iterator();
|
||
|
|
||
|
while (iterator.hasNext()) {
|
||
|
- T t0 = (EntityLiving) iterator.next();
|
||
|
+ T t0 = (T) iterator.next(); // Paper - decompile fix
|
||
|
|
||
|
if (pathfindertargetcondition.a(entityliving, t0)) {
|
||
|
list1.add(t0);
|
||
|
diff --git a/src/main/java/net/minecraft/server/IWorldReader.java b/src/main/java/net/minecraft/server/IWorldReader.java
|
||
|
index 0930552b1..c0aa21703 100644
|
||
|
--- a/src/main/java/net/minecraft/server/IWorldReader.java
|
||
|
+++ b/src/main/java/net/minecraft/server/IWorldReader.java
|
||
|
@@ -95,7 +95,12 @@ public interface IWorldReader extends IIBlockAccess {
|
||
|
return ChunkStatus.EMPTY;
|
||
|
}
|
||
|
|
||
|
+ // Paper start
|
||
|
default boolean a(IBlockData iblockdata, BlockPosition blockposition, VoxelShapeCollision voxelshapecollision) {
|
||
|
+ return this.checkEntityCollision(iblockdata, blockposition, voxelshapecollision, false);
|
||
|
+ }
|
||
|
+ default boolean checkEntityCollision(IBlockData iblockdata, BlockPosition blockposition, VoxelShapeCollision voxelshapecollision, boolean checkCanSee) {
|
||
|
+ // Paper end
|
||
|
VoxelShape voxelshape = iblockdata.b((IBlockAccess) this, blockposition, voxelshapecollision);
|
||
|
|
||
|
return voxelshape.isEmpty() || this.a((Entity) null, voxelshape.a((double) blockposition.getX(), (double) blockposition.getY(), (double) blockposition.getZ()));
|
||
|
diff --git a/src/main/java/net/minecraft/server/ItemBlock.java b/src/main/java/net/minecraft/server/ItemBlock.java
|
||
|
index 59b1e6ce2..b90cc6652 100644
|
||
|
--- a/src/main/java/net/minecraft/server/ItemBlock.java
|
||
|
+++ b/src/main/java/net/minecraft/server/ItemBlock.java
|
||
|
@@ -126,7 +126,8 @@ public class ItemBlock extends Item {
|
||
|
EntityHuman entityhuman = blockactioncontext.getEntity();
|
||
|
VoxelShapeCollision voxelshapecollision = entityhuman == null ? VoxelShapeCollision.a() : VoxelShapeCollision.a((Entity) entityhuman);
|
||
|
// CraftBukkit start - store default return
|
||
|
- boolean defaultReturn = (!this.d() || iblockdata.canPlace(blockactioncontext.getWorld(), blockactioncontext.getClickPosition())) && blockactioncontext.getWorld().a(iblockdata, blockactioncontext.getClickPosition(), voxelshapecollision);
|
||
|
+ final World world = blockactioncontext.getWorld(); // Paper
|
||
|
+ boolean defaultReturn = (!this.d() || iblockdata.canPlace(world, blockactioncontext.getClickPosition())) && world.checkEntityCollision(iblockdata, blockactioncontext.getClickPosition(), voxelshapecollision, true); // Paper
|
||
|
org.bukkit.entity.Player player = (blockactioncontext.getEntity() instanceof EntityPlayer) ? (org.bukkit.entity.Player) blockactioncontext.getEntity().getBukkitEntity() : null;
|
||
|
|
||
|
BlockCanBuildEvent event = new BlockCanBuildEvent(CraftBlock.at(blockactioncontext.getWorld(), blockactioncontext.getClickPosition()), player, CraftBlockData.fromData(iblockdata), defaultReturn);
|
||
|
diff --git a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
||
|
index de081ca1c..c09f7e7c4 100644
|
||
|
--- a/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
||
|
+++ b/src/main/java/org/bukkit/craftbukkit/event/CraftEventFactory.java
|
||
|
@@ -1106,6 +1106,14 @@ public class CraftEventFactory {
|
||
|
Projectile projectile = (Projectile) entity.getBukkitEntity();
|
||
|
org.bukkit.entity.Entity collided = position.getEntity().getBukkitEntity();
|
||
|
com.destroystokyo.paper.event.entity.ProjectileCollideEvent event = new com.destroystokyo.paper.event.entity.ProjectileCollideEvent(projectile, collided);
|
||
|
+
|
||
|
+ if (projectile.getShooter() instanceof Player && collided instanceof Player) {
|
||
|
+ if (!((Player) projectile.getShooter()).canSee((Player) collided)) {
|
||
|
+ event.setCancelled(true);
|
||
|
+ return event;
|
||
|
+ }
|
||
|
+ }
|
||
|
+
|
||
|
Bukkit.getPluginManager().callEvent(event);
|
||
|
return event;
|
||
|
}
|
||
|
--
|
||
|
2.21.0
|
||
|
|