mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 19:46:21 +01:00
Fixed a crash in pitch/yaw calculation, probably a big improvement performance too (but then maybe not :D)
This commit is contained in:
parent
3c9944237a
commit
13218f55e4
@ -144,8 +144,8 @@ public abstract class Entity {
|
||||
}
|
||||
|
||||
protected void c(float f, float f1) {
|
||||
this.yaw = f;
|
||||
this.pitch = f1;
|
||||
this.yaw = f % 360f;
|
||||
this.pitch = f1 % 360f;
|
||||
}
|
||||
|
||||
public void a(double d0, double d1, double d2) {
|
||||
|
Loading…
Reference in New Issue
Block a user