1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-22 12:44:24 +02:00

Remove redundant BlockPosition creation from sleep API

This commit is contained in:
md_5 2019-01-02 22:58:07 +11:00
parent 756c38d1e4
commit 917411fd80

View file

@ -162,7 +162,7 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
Preconditions.checkArgument(location != null, "Location == null");
Preconditions.checkArgument(location.getWorld().equals(getWorld()), "Cannot sleep across worlds");
BlockPosition blockposition = new BlockPosition(new BlockPosition(location.getBlockX(), location.getBlockY(), location.getBlockZ()));
BlockPosition blockposition = new BlockPosition(location.getBlockX(), location.getBlockY(), location.getBlockZ());
IBlockData iblockdata = getHandle().world.getType(blockposition);
if (!(iblockdata.getBlock() instanceof BlockBed)) {
return false;