3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-07-09 12:08:02 +02:00

Back to snapshot for development

Dieser Commit ist enthalten in:
Alexander Brandes 2023-12-22 18:37:07 +01:00
Ursprung e4a214ec9b
Commit a4a11265ec
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 158F5701A6AAD00C
3 geänderte Dateien mit 5 neuen und 5 gelöschten Zeilen

Datei anzeigen

@ -34,7 +34,7 @@ logger.lifecycle("""
******************************************* *******************************************
""") """)
var rootVersion by extra("2.8.4") var rootVersion by extra("2.8.5")
var snapshot by extra("SNAPSHOT") var snapshot by extra("SNAPSHOT")
var revision: String by extra("") var revision: String by extra("")
var buildNumber by extra("") var buildNumber by extra("")
@ -52,7 +52,7 @@ ext {
} }
} }
version = String.format("%s", rootVersion) version = String.format("%s-%s", rootVersion, buildNumber)
if (!project.hasProperty("gitCommitHash")) { if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit") apply(plugin = "org.ajoberstar.grgit")

Datei anzeigen

@ -157,7 +157,7 @@ public interface IBatchProcessor {
* @return false if chunk is empty of NBT * @return false if chunk is empty of NBT
* @deprecated tiles are stored in chunk-normalised coordinate space and thus cannot use the same function as entities * @deprecated tiles are stored in chunk-normalised coordinate space and thus cannot use the same function as entities
*/ */
@Deprecated(forRemoval = true, since = "TODO") @Deprecated(forRemoval = true, since = "2.8.4")
default boolean trimNBT(IChunkSet set, Function<BlockVector3, Boolean> contains) { default boolean trimNBT(IChunkSet set, Function<BlockVector3, Boolean> contains) {
Set<CompoundTag> ents = set.getEntities(); Set<CompoundTag> ents = set.getEntities();
if (!ents.isEmpty()) { if (!ents.isEmpty()) {
@ -175,7 +175,7 @@ public interface IBatchProcessor {
* Utility method to trim entity and blocks with a provided contains function. * Utility method to trim entity and blocks with a provided contains function.
* *
* @return false if chunk is empty of NBT * @return false if chunk is empty of NBT
* @since TODO * @since 2.8.4
*/ */
default boolean trimNBT( default boolean trimNBT(
IChunkSet set, Function<BlockVector3, Boolean> containsEntity, Function<BlockVector3, Boolean> containsTile IChunkSet set, Function<BlockVector3, Boolean> containsEntity, Function<BlockVector3, Boolean> containsTile

Datei anzeigen

@ -38,7 +38,7 @@ public interface IChunk extends Trimable, IChunkGet, IChunkSet {
* Return the minimum block coordinate of the chunk * Return the minimum block coordinate of the chunk
* *
* @return BlockVector3 of minimum block coordinate * @return BlockVector3 of minimum block coordinate
* @since TODO * @since 2.8.4
*/ */
default BlockVector3 getChunkBlockCoord() { default BlockVector3 getChunkBlockCoord() {
return BlockVector3.at(getX() << 4, getMinY(), getZ() << 4); return BlockVector3.at(getX() << 4, getMinY(), getZ() << 4);