Class WorldSavedData

    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String mapName  
    • Constructor Summary

      Constructors 
      Constructor Description
      WorldSavedData​(java.lang.String name)  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isDirty()
      + Whether this MapDataBase needs saving to disk.
      void markDirty()
      + Marks this MapDataBase dirty, to be saved to disk when the level next saves.
      abstract void readFromNBT​(NBTTagCompound var1)  
      void setDirty​(boolean isDirty)
      + Sets the dirty state of this MapDataBase, whether it needs saving to disk.
      abstract void writeToNBT​(NBTTagCompound var1)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • mapName

        public final java.lang.String mapName
    • Constructor Detail

      • WorldSavedData

        public WorldSavedData​(java.lang.String name)
    • Method Detail

      • readFromNBT

        public abstract void readFromNBT​(NBTTagCompound var1)
      • writeToNBT

        public abstract void writeToNBT​(NBTTagCompound var1)
      • markDirty

        public void markDirty()
        + Marks this MapDataBase dirty, to be saved to disk when the level next saves.
      • setDirty

        public void setDirty​(boolean isDirty)
        + Sets the dirty state of this MapDataBase, whether it needs saving to disk.
      • isDirty

        public boolean isDirty()
        + Whether this MapDataBase needs saving to disk.