Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-19 13:00:06 +01:00
SPIGOT-5510: VehicleBlockCollisionEvent returns the wrong block
Dieser Commit ist enthalten in:
Ursprung
ec4b2b5ef1
Commit
752cf95e37
@ -214,13 +214,13 @@
|
|||||||
+ Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
+ Vehicle vehicle = (Vehicle) this.getBukkitEntity();
|
||||||
+ org.bukkit.block.Block bl = this.world.getWorld().getBlockAt(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ));
|
+ org.bukkit.block.Block bl = this.world.getWorld().getBlockAt(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ));
|
||||||
+
|
+
|
||||||
+ if (vec3d1.x > vec3d.x) {
|
+ if (vec3d.x > vec3d1.x) {
|
||||||
+ bl = bl.getRelative(BlockFace.EAST);
|
+ bl = bl.getRelative(BlockFace.EAST);
|
||||||
+ } else if (vec3d.x < vec3d.x) {
|
+ } else if (vec3d.x < vec3d1.x) {
|
||||||
+ bl = bl.getRelative(BlockFace.WEST);
|
+ bl = bl.getRelative(BlockFace.WEST);
|
||||||
+ } else if (vec3d1.z > vec3d.z) {
|
+ } else if (vec3d.z > vec3d1.z) {
|
||||||
+ bl = bl.getRelative(BlockFace.SOUTH);
|
+ bl = bl.getRelative(BlockFace.SOUTH);
|
||||||
+ } else if (vec3d1.z < vec3d.z) {
|
+ } else if (vec3d.z < vec3d1.z) {
|
||||||
+ bl = bl.getRelative(BlockFace.NORTH);
|
+ bl = bl.getRelative(BlockFace.NORTH);
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren