Fix Position#getHeight.

This commit is contained in:
Major-
2015-03-04 06:31:48 +00:00
parent 0b1134b5c9
commit c52b80c154
+1 -1
View File
@@ -97,7 +97,7 @@ public final class Position {
* @return The height level.
*/
public int getHeight() {
return packed >> 30;
return packed >> 30 & 0x3;
}
/**