Completes #854 Use superior file constructor to not care about file separator

This commit is contained in:
thatsIch
2015-03-26 18:20:49 +01:00
parent db7296c0a1
commit 0b86887962
2 changed files with 7 additions and 7 deletions
@@ -185,6 +185,6 @@ public class CompassRegion
AELog.info( "Failed to create AE2/compass/" );
}
return new File( folder + File.separatorChar + this.world + '_' + this.low_x + '_' + this.low_z + ".dat" );
return new File( folder, this.world + '_' + this.low_x + '_' + this.low_z + ".dat" );
}
}