Attempt to fix any damage caused by misplaced tile entities

Dieser Commit ist enthalten in:
Dinnerbone 2011-10-02 04:25:21 +01:00
Ursprung 39674b6fb0
Commit bf09121354
2 geänderte Dateien mit 60 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -605,7 +605,10 @@ public class Chunk {
tileentity.n();
this.tileEntities.put(chunkposition, tileentity);
} else {
System.out.println("Attempted to place a tile entity where there was no entity tile!");
// CraftBukkit start
System.out.println("Attempted to place a tile entity (" + tileentity + ") at " + tileentity.x + "," + tileentity.y + "," + tileentity.z
+ " (" + org.bukkit.Material.getMaterial(getTypeId(i, j, k)) + ") where there was no entity tile!");
// CraftBukkit end
}
}

Datei anzeigen

@ -36,6 +36,62 @@ public class WorldServer extends World implements BlockChangeDelegate {
return height;
}
@Override
public TileEntity getTileEntity(int i, int j, int k) {
TileEntity result = super.getTileEntity(i, j, k);
int type = getTypeId(i, j, k);
if (type == Block.CHEST.id) {
if (!(result instanceof TileEntityChest)) {
result = fixTileEntity(i, j, k, type, result);
}
} else if (type == Block.FURNACE.id) {
if (!(result instanceof TileEntityFurnace)) {
result = fixTileEntity(i, j, k, type, result);
}
} else if (type == Block.PISTON_MOVING.id) {
if (!(result instanceof TileEntityPiston)) {
result = fixTileEntity(i, j, k, type, result);
}
} else if (type == Block.DISPENSER.id) {
if (!(result instanceof TileEntityDispenser)) {
result = fixTileEntity(i, j, k, type, result);
}
} else if (type == Block.JUKEBOX.id) {
if (!(result instanceof TileEntityRecordPlayer)) {
result = fixTileEntity(i, j, k, type, result);
}
} else if (type == Block.NOTE_BLOCK.id) {
if (!(result instanceof TileEntityNote)) {
result = fixTileEntity(i, j, k, type, result);
}
} else if (type == Block.MOB_SPAWNER.id) {
if (!(result instanceof TileEntityMobSpawner)) {
result = fixTileEntity(i, j, k, type, result);
}
} else if ((type == Block.SIGN_POST.id) || (type == Block.WALL_SIGN.id)) {
if (!(result instanceof TileEntitySign)) {
result = fixTileEntity(i, j, k, type, result);
}
}
return result;
}
private TileEntity fixTileEntity(int x, int y, int z, int type, TileEntity found) {
getServer().getLogger().severe("Block at " + x + "," + y + "," + z + " is " + org.bukkit.Material.getMaterial(type).toString() + " but has " + found + ". "
+ "Bukkit will attempt to fix this, but there may be additional damage that we cannot recover.");
if (Block.byId[type] instanceof BlockContainer) {
TileEntity replacement = ((BlockContainer)Block.byId[type]).a_();
setTileEntity(x, y, z, replacement);
return replacement;
} else {
getServer().getLogger().severe("Don't know how to fix for this type... Can't do anything! :(");
return found;
}
}
public final int dimension;
public EntityTracker tracker;
public PlayerManager manager;