Skip to content

Commit

Permalink
Merge pull request #46 from prydin/prydin-heightmap
Browse files Browse the repository at this point in the history
Fixed Heightmap tag typo and added maven plugin
  • Loading branch information
Querz committed May 29, 2020
2 parents 982002a + 90e7fdc commit c66dd6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
plugins {
id 'com.github.kt3k.coveralls' version '2.4.0'
id 'maven'
}

apply plugin: 'java'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/net/querz/mca/Chunk.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private void initReferences() {
this.inhabitedTime = level.getLong("InhabitedTime");
this.lastUpdate = level.getLong("LastUpdate");
this.biomes = level.getIntArray("Biomes");
this.heightMaps = level.getCompoundTag("HeightMaps");
this.heightMaps = level.getCompoundTag("Heightmaps");
this.carvingMasks = level.getCompoundTag("CarvingMasks");
this.entities = level.containsKey("Entities") ? level.getListTag("Entities").asCompoundTagList() : null;
this.tileEntities = level.containsKey("TileEntities") ? level.getListTag("TileEntities").asCompoundTagList() : null;
Expand Down

0 comments on commit c66dd6d

Please sign in to comment.