Push BlueMapVue and remove wrong comment from code

This commit is contained in:
Lukas Rieger (Blue) 2021-12-02 14:10:14 +01:00
parent 79b6319ec5
commit 6186b16e8d
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
2 changed files with 1 additions and 2 deletions

@ -1 +1 @@
Subproject commit ef7a66f8b5f73c73404ba3860916630e6ae96799
Subproject commit 13f60e6ee0ba39759d662bba5ae750a5918b564b

View File

@ -267,7 +267,6 @@ public String getBiome(int x, int y, int z) {
y = (y & 0xF) / 4;
int biomeIndex = y * 16 + z * 4 + x;
// this.biomes.length == bits per biome -- because -> available longs * 64 (bits per long) / 64 (biomes per section, 4*4*4)
long value = MCAMath.getValueFromLongArray(biomes, biomeIndex, bitsPerBiome);
if (value >= biomePalette.length) {
Logger.global.noFloodWarning("biomepalettewarning", "Got biome-palette value " + value + " but palette has size of " + biomePalette.length + "! (Future occasions of this error will not be logged)");