Skip to content

Commit

Permalink
Update to Minecraft 1.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stephan-gh authored and wizjany committed Dec 29, 2016
1 parent ed8f185 commit b99ea5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions worldedit-sponge/build.gradle
Expand Up @@ -14,7 +14,7 @@ buildscript {
}

plugins {
id 'org.spongepowered.plugin' version '0.5.2'
id 'org.spongepowered.plugin' version '0.6'
}

apply plugin: 'net.minecrell.vanilla.server.library'
Expand All @@ -35,8 +35,8 @@ sponge {
}

minecraft {
version = "1.10"
mappings = 'snapshot_20160619'
version = "1.10.2"
mappings = 'snapshot_20160628'
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.func_190200_a(world, tag);
TileEntity tileEntity = TileEntity.create(world, tag);
if (tileEntity != null) {
world.setTileEntity(new BlockPos(position.getBlockX(), position.getBlockY(), position.getBlockZ()), tileEntity);
}
Expand Down

0 comments on commit b99ea5e

Please sign in to comment.