Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 02:50:05 +01:00
More enhanced switches
Dieser Commit ist enthalten in:
Ursprung
8d565b93f7
Commit
f505828af1
@ -277,17 +277,10 @@ public class CavesGen extends GenBase {
|
||||
}
|
||||
|
||||
protected boolean isSuitableBlock(BlockStateHolder material, BlockStateHolder materialAbove) {
|
||||
switch (material.getBlockType().getId()) {
|
||||
case "minecraft:air":
|
||||
case "minecraft:cave_air":
|
||||
case "minecraft:void_air":
|
||||
case "minecraft:water":
|
||||
case "minecraft:lava":
|
||||
case "minecraft:bedrock":
|
||||
return false;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
return switch (material.getBlockType().getId()) {
|
||||
case "minecraft:air", "minecraft:cave_air", "minecraft:void_air", "minecraft:water", "minecraft:lava", "minecraft:bedrock" -> false;
|
||||
default -> true;
|
||||
};
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -116,9 +116,7 @@ public interface IBlocks extends Trimable {
|
||||
for (int i = 0; i < ids.length; i++) {
|
||||
char ordinal = ids[i];
|
||||
switch (ordinal) {
|
||||
case BlockTypesCache.ReservedIDs.__RESERVED__:
|
||||
case BlockTypesCache.ReservedIDs.CAVE_AIR:
|
||||
case BlockTypesCache.ReservedIDs.VOID_AIR:
|
||||
case BlockTypesCache.ReservedIDs.__RESERVED__, BlockTypesCache.ReservedIDs.CAVE_AIR, BlockTypesCache.ReservedIDs.VOID_AIR:
|
||||
ids[i] = BlockTypesCache.ReservedIDs.AIR;
|
||||
case BlockTypesCache.ReservedIDs.AIR:
|
||||
continue;
|
||||
@ -140,17 +138,13 @@ public interface IBlocks extends Trimable {
|
||||
for (int i = 0; i < palette.paletteToBlockLength; i++) {
|
||||
int ordinal = palette.paletteToBlock[i];
|
||||
switch (ordinal) {
|
||||
case BlockTypesCache.ReservedIDs.__RESERVED__:
|
||||
case BlockTypesCache.ReservedIDs.AIR:
|
||||
case BlockTypesCache.ReservedIDs.CAVE_AIR:
|
||||
case BlockTypesCache.ReservedIDs.VOID_AIR:
|
||||
sectionWriter.write(0);
|
||||
break;
|
||||
default:
|
||||
case BlockTypesCache.ReservedIDs.__RESERVED__, BlockTypesCache.ReservedIDs.AIR, BlockTypesCache.ReservedIDs.CAVE_AIR,
|
||||
BlockTypesCache.ReservedIDs.VOID_AIR -> sectionWriter.write(0);
|
||||
default -> {
|
||||
BlockState state = BlockState.getFromOrdinal(ordinal);
|
||||
int mcId = registry.getInternalBlockStateId(state).getAsInt();
|
||||
sectionWriter.writeVarInt(mcId);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
sectionWriter.writeVarInt(palette.blockStatesLength);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren