[Forge] Update to 1.10.2.

This commit is contained in:
Kenzie Togami
2016-06-25 00:01:29 -07:00
committed by wizjany
parent 38ddeaf777
commit 2267dfd29f
2 changed files with 5 additions and 7 deletions

View File

@ -96,8 +96,7 @@ final class TileEntityUtils {
static void setTileEntity(World world, Vector position, @Nullable NBTTagCompound tag) {
if (tag != null) {
updateForSet(tag, position);
// TileEntity.create(World, NBTTagCompound)
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);
}
@ -123,8 +122,7 @@ final class TileEntityUtils {
TileEntity genericTE;
try {
// Downcast here for return while retaining the type
genericTE = (TileEntity) baseConstructor.newInstance();
genericTE = baseConstructor.newInstance();
} catch (Throwable e) {
return null;
}