mirror of
https://github.com/PaperMC/Paper.git
synced 2025-09-03 05:43:52 -07:00
Update to Minecraft 1.12-pre2
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
@@ -79,7 +85,18 @@
|
||||
for (int l = 0; l <= 4; ++l) {
|
||||
for (int i1 = 0; i1 <= 4; ++i1) {
|
||||
if ((l < 1 || i1 < 1 || l > 3 || i1 > 3) && this.a.getType(new BlockPosition(i + l, k - 1, j + i1)).r() && this.a(new BlockPosition(i + l, k, j + i1)) && this.a(new BlockPosition(i + l, k + 1, j + i1))) {
|
||||
if ((l < 1 || i1 < 1 || l > 3 || i1 > 3) && this.a(i, j, k, l, i1)) {
|
||||
- this.d.setPositionRotation((double) ((float) (i + l) + 0.5F), (double) k, (double) ((float) (j + i1) + 0.5F), this.d.yaw, this.d.pitch);
|
||||
+ // CraftBukkit start
|
||||
+ CraftEntity entity = this.d.getBukkitEntity();
|
||||
@@ -29,6 +29,6 @@
|
||||
+
|
||||
+ this.d.setPositionRotation(to.getX(), to.getY(), to.getZ(), to.getYaw(), to.getPitch());
|
||||
+ // CraftBukkit end
|
||||
this.g.o();
|
||||
this.g.p();
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user