Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 02:50:05 +01:00
[Forge] Update to 1.10.2.
Dieser Commit ist enthalten in:
Ursprung
38ddeaf777
Commit
2267dfd29f
@ -27,12 +27,12 @@ repositories {
|
||||
}
|
||||
|
||||
//version = "6.1.2"
|
||||
ext.forgeVersion = "12.18.0.1981-1.10.0"
|
||||
ext.forgeVersion = "12.18.0.2002-1.10.0"
|
||||
//ext.internalVersion = version + ";" + gitCommitHash
|
||||
|
||||
minecraft {
|
||||
version = "1.10-${project.forgeVersion}"
|
||||
mappings = "snapshot_20160623"
|
||||
version = "1.10.2-${project.forgeVersion}"
|
||||
mappings = "snapshot_20160629"
|
||||
runDir = 'run'
|
||||
|
||||
replaceIn "com/sk89q/worldedit/forge/ForgeWorldEdit.java"
|
||||
|
@ -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;
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren