mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Update to Minecraft 1.10.2
This commit is contained in:
parent
ed8f18564a
commit
b99ea5ec6c
@ -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'
|
||||
@ -35,8 +35,8 @@ sponge {
|
||||
}
|
||||
|
||||
minecraft {
|
||||
version = "1.10"
|
||||
mappings = 'snapshot_20160619'
|
||||
version = "1.10.2"
|
||||
mappings = 'snapshot_20160628'
|
||||
runDir = 'run'
|
||||
}
|
||||
|
||||
|
@ -97,7 +97,7 @@ final class TileEntityUtils {
|
||||
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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user