Random variable tweaks & opts

This commit is contained in:
cyberpwn
2022-01-13 07:14:16 -05:00
parent 62c2757afc
commit 32a0fc9b17
13 changed files with 34 additions and 45 deletions

View File

@@ -30,7 +30,6 @@ public class Section {
private MCAPaletteAccess palette;
private byte[] blockLight;
private byte[] skyLight;
private int dataVersion;
public Section(CompoundTag sectionRoot, int dataVersion) {
this(sectionRoot, dataVersion, LoadFlags.ALL_DATA);
@@ -38,7 +37,6 @@ public class Section {
public Section(CompoundTag sectionRoot, int dataVersion, long loadFlags) {
data = sectionRoot;
this.dataVersion = dataVersion;
ListTag<?> rawPalette = sectionRoot.getListTag("Palette");
if(rawPalette == null) {
return;