13
0
geforkt von Mirrors/Paper

SPIGOT-2890: SetBiome not saving changes

By: md_5 <git@md-5.net>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2016-12-06 20:46:04 +11:00
Ursprung db5c1e3e66
Commit e40bffa82a

Datei anzeigen

@ -597,6 +597,8 @@ public class CraftWorld implements World {
if (chunk != null) {
byte[] biomevals = chunk.getBiomeIndex();
biomevals[((z & 0xF) << 4) | (x & 0xF)] = (byte) BiomeBase.REGISTRY_ID.a(bb);
chunk.e(); // SPIGOT-2890 // PAIL: markDirty
}
}
}