Probably fixes #423

This commit is contained in:
Jesse Boyd 2017-02-14 09:06:44 +11:00
parent 686e932943
commit 4caadb8ab9
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -627,7 +627,7 @@ public abstract class MappedFaweQueue<WORLD, CHUNK, CHUNKSECTIONS, SECTION> exte
} else if (lastChunk == null) { } else if (lastChunk == null) {
return 0; return 0;
} }
return getBiome(lastChunk, x, z); return getBiome(lastChunk, x, z) & 0xFF;
} }
@Override @Override