mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2025-01-07 16:58:16 +01:00
Fix 1.13.2 support
This commit is contained in:
parent
969f7a78f3
commit
97f346534b
@ -55,7 +55,9 @@ public ChunkAnvil113(MCAWorld world, CompoundTag chunkTag) {
|
||||
CompoundTag levelData = chunkTag.getCompoundTag("Level");
|
||||
|
||||
String status = levelData.getString("Status");
|
||||
this.isGenerated = status.equals("full");
|
||||
this.isGenerated = status.equals("full") ||
|
||||
status.equals("fullchunk") ||
|
||||
status.equals("postprocessed");
|
||||
this.hasLight = isGenerated;
|
||||
|
||||
this.inhabitedTime = levelData.getLong("InhabitedTime");
|
||||
|
Loading…
Reference in New Issue
Block a user