public void readFromNBT(NBTTagCompound tagCompound) { this.name = tagCompound.getString("name"); setSpawnPoint(Coordinate.readFromNBT(tagCompound, "spawnPoint")); setProbeCounter(tagCompound.getInteger("probeCounter")); setupFromNBT(tagCompound); setupBiomeMapping(); }
public DimensionInformation(DimensionDescriptor descriptor, NBTTagCompound tagCompound) { this.name = tagCompound.getString("name"); this.descriptor = descriptor; setSpawnPoint(Coordinate.readFromNBT(tagCompound, "spawnPoint")); setProbeCounter(tagCompound.getInteger("probeCounter")); int version = tagCompound.getInteger("version"); if (version == 1) { // This version of the dimension information has the random information persisted. setupFromNBT(tagCompound); } else { // This is an older version. Here we have to calculate the random information again. setupFromDescriptor(1); } setupBiomeMapping(); }