int chunkY = y + frag.getChunkY();
if (checkChunk(chunkX, chunkY)) {
//getValidTemple(frag, x << 4, y << 4);
String biomeName = BiomeLayer.getBiomeNameForFragment(frag, x << 4, y << 4);
if (biomeName.equals("Swampland"))
frag.addObject(new MapObjectWitchHut(x << 4, y << 4).setParent(this));
else if (biomeName.contains("Jungle"))
frag.addObject(new MapObjectJungleTemple(x << 4, y << 4).setParent(this));
else
frag.addObject(new MapObjectDesertTemple(x << 4, y << 4).setParent(this));
}