Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update for Minecraft 1.10
  • Loading branch information
stephan-gh committed Jun 19, 2016
1 parent 87efcdc commit c00d123
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions worldedit-sponge/build.gradle
Expand Up @@ -35,8 +35,8 @@ sponge {
}

minecraft {
version = "1.9.4"
mappings = 'snapshot_20160521'
version = "1.10"
mappings = 'snapshot_20160619'
runDir = 'run'
}

Expand Down
Expand Up @@ -97,7 +97,7 @@ static void setTileEntity(World world, Vector position, Class<? extends TileEnti
static void setTileEntity(World world, Vector position, @Nullable NBTTagCompound tag) {
if (tag != null) {
updateForSet(tag, position);
TileEntity tileEntity = TileEntity.create(tag);
TileEntity tileEntity = TileEntity.func_190200_a(world, tag);
if (tileEntity != null) {
world.setTileEntity(new BlockPos(position.getBlockX(), position.getBlockY(), position.getBlockZ()), tileEntity);
}
Expand Down

0 comments on commit c00d123

Please sign in to comment.