Update dimHelper.java #5

Merged
OvermindDL1 merged 1 commits from patch-1 into master 2013-06-07 03:00:24 +00:00

View File

@@ -1047,9 +1047,12 @@ public class dimHelper extends DimensionManager
//TODO change from saving serialized objects to just saving data for compatabilies sake. //TODO change from saving serialized objects to just saving data for compatabilies sake.
public void save() public void save()
{ {
if(!this.isSaving&&!DimensionManager.getWorld(0).isRemote&&this.getCurrentSaveRootDirectory()!=null) if(this.isSaving) return;
World world = DimensionManager.getWorld(0);
if(world==null || world.isRemote) return;
if(this.getCurrentSaveRootDirectory()!=null)
{ {
// System.out.println("saving"); //System.out.println("saving");
this.isSaving=true; this.isSaving=true;
HashMap comboSave=new HashMap(); HashMap comboSave=new HashMap();