mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-12 10:45:50 -07:00
Fixes the whitescreen issue some people were having.
This commit is contained in:
@@ -356,6 +356,15 @@ public class NetServerHandler extends NetHandler implements ICommandListener {
|
||||
d2 = to.getZ();
|
||||
f = to.getYaw();
|
||||
f1 = to.getPitch();
|
||||
|
||||
// TODO: make sure this is the best way to address this.
|
||||
if (Float.isNaN(f)) {
|
||||
f = 0;
|
||||
}
|
||||
|
||||
if (Float.isNaN(f1)) {
|
||||
f1 = 0;
|
||||
}
|
||||
// CraftBukkit end
|
||||
|
||||
this.m = false;
|
||||
|
Reference in New Issue
Block a user