Format codes

This commit is contained in:
Snownee 2021-02-06 04:21:07 +08:00
parent 2baa3f9922
commit 25daf28205

View file

@ -24,7 +24,8 @@ public class SchematicProcessor extends StructureProcessor {
@Nullable @Nullable
@Override @Override
public Template.BlockInfo process(IWorldReader world, BlockPos pos, Template.BlockInfo rawInfo, Template.BlockInfo info, PlacementSettings settings, @Nullable Template template) { public Template.BlockInfo process(IWorldReader world, BlockPos pos, Template.BlockInfo rawInfo,
Template.BlockInfo info, PlacementSettings settings, @Nullable Template template) {
if (info.nbt != null) { if (info.nbt != null) {
TileEntity te = info.state.createTileEntity(world); TileEntity te = info.state.createTileEntity(world);
if (te != null) { if (te != null) {
@ -38,9 +39,9 @@ public class SchematicProcessor extends StructureProcessor {
@Nullable @Nullable
@Override @Override
public Template.EntityInfo processEntity(IWorldReader world, BlockPos pos, Template.EntityInfo rawInfo, Template.EntityInfo info, PlacementSettings settings, Template template) { public Template.EntityInfo processEntity(IWorldReader world, BlockPos pos, Template.EntityInfo rawInfo,
return EntityType.readEntityType(info.nbt) Template.EntityInfo info, PlacementSettings settings, Template template) {
.flatMap(type -> { return EntityType.readEntityType(info.nbt).flatMap(type -> {
if (world instanceof World) { if (world instanceof World) {
Entity e = type.create((World) world); Entity e = type.create((World) world);
if (e != null && !e.ignoreItemEntityData()) { if (e != null && !e.ignoreItemEntityData()) {
@ -48,8 +49,7 @@ public class SchematicProcessor extends StructureProcessor {
} }
} }
return Optional.empty(); return Optional.empty();
}) }).orElse(null);
.orElse(null);
} }
@Override @Override