Fix wrong yaw and pitch of CommandSourceStack#getBukkitLocation (#8411)
This commit is contained in:
parent
c6d737528d
commit
14c32bc43d
|
@ -34,7 +34,7 @@ index da6250df1c5f3385b683cffde47754bca4606f5e..3384501f83d445f45aa8233e98c7597d
|
||||||
public void removeCommand(String name) {
|
public void removeCommand(String name) {
|
||||||
this.children.remove(name);
|
this.children.remove(name);
|
||||||
diff --git a/src/main/java/net/minecraft/commands/CommandSourceStack.java b/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
diff --git a/src/main/java/net/minecraft/commands/CommandSourceStack.java b/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
||||||
index 3308d684fc6cd0a83e190a52693b29d30e0087cb..aadddbc16aa719677c3b6fc4969b6145b9b9ee0b 100644
|
index 3308d684fc6cd0a83e190a52693b29d30e0087cb..fa258155b1cbdd8efde15ec59986d0ab56245ddd 100644
|
||||||
--- a/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
--- a/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
||||||
+++ b/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
+++ b/src/main/java/net/minecraft/commands/CommandSourceStack.java
|
||||||
@@ -39,7 +39,7 @@ import net.minecraft.world.phys.Vec2;
|
@@ -39,7 +39,7 @@ import net.minecraft.world.phys.Vec2;
|
||||||
|
@ -66,7 +66,7 @@ index 3308d684fc6cd0a83e190a52693b29d30e0087cb..aadddbc16aa719677c3b6fc4969b6145
|
||||||
+ Vec3 pos = getPosition();
|
+ Vec3 pos = getPosition();
|
||||||
+ org.bukkit.World world = getBukkitWorld();
|
+ org.bukkit.World world = getBukkitWorld();
|
||||||
+ Vec2 rot = getRotation();
|
+ Vec2 rot = getRotation();
|
||||||
+ return world != null && pos != null ? new org.bukkit.Location(world, pos.x, pos.y, pos.z, rot != null ? rot.x : 0, rot != null ? rot.y : 0) : null;
|
+ return world != null && pos != null ? new org.bukkit.Location(world, pos.x, pos.y, pos.z, rot != null ? rot.y : 0, rot != null ? rot.x : 0) : null;
|
||||||
+ }
|
+ }
|
||||||
+ // Paper end
|
+ // Paper end
|
||||||
+
|
+
|
||||||
|
|
Loading…
Reference in New Issue