Use the boolean value here.

This commit is contained in:
asofold 2015-01-21 23:41:37 +01:00
parent 8624a9aa01
commit 6a8a0f3593

View File

@ -143,8 +143,8 @@ public class FlyingFrequency extends PacketAdapter implements JoinLeaveListener
// Can not check.
return false;
}
final boolean hasPos = booleans.get(FFData.indexhasPos);
final boolean hasLook = booleans.get(FFData.indexhasLook);
final boolean hasPos = booleans.get(FFData.indexhasPos).booleanValue();
final boolean hasLook = booleans.get(FFData.indexhasLook).booleanValue();
final boolean onGround = booleans.get(FFData.indexOnGround).booleanValue();
boolean onGroundSkip = false;