From 1e23c63731780d9dfcccf69120e0c72a74752e67 Mon Sep 17 00:00:00 2001 From: Sini Date: Sat, 25 Aug 2012 02:51:23 +0000 Subject: [PATCH] Update MediaWiki page '377 Construct Map Region' --- 377-Construct-Map-Region.mediawiki | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/377-Construct-Map-Region.mediawiki b/377-Construct-Map-Region.mediawiki index 9fc671e..41733ab 100644 --- a/377-Construct-Map-Region.mediawiki +++ b/377-Construct-Map-Region.mediawiki @@ -30,8 +30,8 @@ If the tile exists then a 1 gets written to the output stream as a 1 otherwise a If the tile does exist then you would follow that 1 bit with 26 bits of information about the tile. int info = inStream.readBits(26); - int unknown = info >> 24 & 3; - int unknown = info >> 1 & 3; + int heightLevel = info >> 24 & 3; + int rotation = info >> 1 & 3; int regionX = info >> 14 & 0x3ff; int regionY = info >> 3 & 0x7ff;