-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from prydin/prydin-partial-load
Added support for partial chunk/region load
- Loading branch information
Showing
12 changed files
with
282 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
#Wed Mar 29 16:28:10 CEST 2017 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package net.querz.mca; | ||
|
||
public class LoadFlags { | ||
|
||
public static long BIOMES = 0x0001; | ||
public static long HEIGHTMAPS = 0x0002; | ||
public static long CARVING_MASKS = 0x0004; | ||
public static long ENTITIES = 0x0008; | ||
public static long TILE_ENTITIES = 0x0010; | ||
public static long TILE_TICKS = 0x0040; | ||
public static long LIQUID_TICKS = 0x0080; | ||
public static long TO_BE_TICKED = 0x0100; | ||
public static long POST_PROCESSING = 0x0200; | ||
public static long STRUCTURES = 0x0400; | ||
public static long BLOCK_LIGHTS = 0x0800; | ||
public static long BLOCK_STATES = 0x1000; | ||
public static long SKY_LIGHT = 0x2000; | ||
public static long LIGHTS = 0x4000; | ||
public static long LIQUIDS_TO_BE_TICKED = 0x8000; | ||
|
||
public static long ALL_DATA = 0xffffffffffffffffL; | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.