Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-20 01:40:06 +01:00
Fixed tile entity interaction with Fabric
Dieser Commit ist enthalten in:
Ursprung
449b0991f3
Commit
a9b3fb1429
@ -202,12 +202,16 @@ public class FabricWorld extends AbstractWorld {
|
|||||||
CompoundTag tag = ((BaseBlock) block).getNbtData();
|
CompoundTag tag = ((BaseBlock) block).getNbtData();
|
||||||
if (tag != null) {
|
if (tag != null) {
|
||||||
net.minecraft.nbt.CompoundTag nativeTag = NBTConverter.toNative(tag);
|
net.minecraft.nbt.CompoundTag nativeTag = NBTConverter.toNative(tag);
|
||||||
nativeTag.putString("id", ((BaseBlock) block).getNbtId());
|
BlockEntity tileEntity = getWorld().getWorldChunk(pos).getBlockEntity(pos);
|
||||||
TileEntityUtils.setTileEntity(world, position, nativeTag);
|
if (tileEntity != null) {
|
||||||
|
tileEntity.fromTag(nativeTag);
|
||||||
|
tileEntity.setPos(pos);
|
||||||
|
tileEntity.setWorld(world);
|
||||||
successful = true; // update if TE changed as well
|
successful = true; // update if TE changed as well
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (successful && notifyAndLight) {
|
if (successful && notifyAndLight) {
|
||||||
world.getChunkManager().getLightingProvider().enqueueLightUpdate(pos);
|
world.getChunkManager().getLightingProvider().enqueueLightUpdate(pos);
|
||||||
@ -503,7 +507,9 @@ public class FabricWorld extends AbstractWorld {
|
|||||||
BlockEntity tile = ((WorldChunk) getWorld().getChunk(pos)).getBlockEntity(pos, WorldChunk.CreationType.CHECK);
|
BlockEntity tile = ((WorldChunk) getWorld().getChunk(pos)).getBlockEntity(pos, WorldChunk.CreationType.CHECK);
|
||||||
|
|
||||||
if (tile != null) {
|
if (tile != null) {
|
||||||
return getBlock(position).toBaseBlock(NBTConverter.fromNative(TileEntityUtils.copyNbtData(tile)));
|
net.minecraft.nbt.CompoundTag tag = new net.minecraft.nbt.CompoundTag();
|
||||||
|
tile.toTag(tag);
|
||||||
|
return getBlock(position).toBaseBlock(NBTConverter.fromNative(tag));
|
||||||
} else {
|
} else {
|
||||||
return getBlock(position).toBaseBlock();
|
return getBlock(position).toBaseBlock();
|
||||||
}
|
}
|
||||||
|
@ -1,79 +0,0 @@
|
|||||||
/*
|
|
||||||
* WorldEdit, a Minecraft world manipulation toolkit
|
|
||||||
* Copyright (C) sk89q <http://www.sk89q.com>
|
|
||||||
* Copyright (C) WorldEdit team and contributors
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify it
|
|
||||||
* under the terms of the GNU Lesser General Public License as published by the
|
|
||||||
* Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
||||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
|
||||||
* for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
|
||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package com.sk89q.worldedit.fabric;
|
|
||||||
|
|
||||||
import static com.google.common.base.Preconditions.checkNotNull;
|
|
||||||
|
|
||||||
import com.sk89q.worldedit.math.BlockVector3;
|
|
||||||
import net.minecraft.block.entity.BlockEntity;
|
|
||||||
import net.minecraft.nbt.CompoundTag;
|
|
||||||
import net.minecraft.nbt.IntTag;
|
|
||||||
import net.minecraft.util.math.BlockPos;
|
|
||||||
import net.minecraft.world.World;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Utility methods for setting tile entities in the world.
|
|
||||||
*/
|
|
||||||
final class TileEntityUtils {
|
|
||||||
|
|
||||||
private TileEntityUtils() {
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Update the given tag compound with position information.
|
|
||||||
*
|
|
||||||
* @param tag the tag
|
|
||||||
* @param position the position
|
|
||||||
*/
|
|
||||||
private static void updateForSet(CompoundTag tag, BlockVector3 position) {
|
|
||||||
checkNotNull(tag);
|
|
||||||
checkNotNull(position);
|
|
||||||
|
|
||||||
tag.put("x", new IntTag(position.getBlockX()));
|
|
||||||
tag.put("y", new IntTag(position.getBlockY()));
|
|
||||||
tag.put("z", new IntTag(position.getBlockZ()));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set a tile entity at the given location using the tile entity ID from
|
|
||||||
* the tag.
|
|
||||||
*
|
|
||||||
* @param world the world
|
|
||||||
* @param position the position
|
|
||||||
* @param tag the tag for the tile entity (may be null to do nothing)
|
|
||||||
*/
|
|
||||||
static void setTileEntity(World world, BlockVector3 position, @Nullable CompoundTag tag) {
|
|
||||||
if (tag != null) {
|
|
||||||
updateForSet(tag, position);
|
|
||||||
BlockEntity tileEntity = BlockEntity.createFromTag(tag);
|
|
||||||
if (tileEntity != null) {
|
|
||||||
world.setBlockEntity(new BlockPos(position.getBlockX(), position.getBlockY(), position.getBlockZ()), tileEntity);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static CompoundTag copyNbtData(BlockEntity tile) {
|
|
||||||
CompoundTag tag = new CompoundTag();
|
|
||||||
tile.toTag(tag);
|
|
||||||
return tag;
|
|
||||||
}
|
|
||||||
}
|
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren