diff --git a/Server/Server.cs b/Server/Server.cs index 65e5f45..a101440 100644 --- a/Server/Server.cs +++ b/Server/Server.cs @@ -8,9 +8,9 @@ public class Server public static Region LoadRegion(string folderPath, Coordinates coordinates) { - string fullPath = Path.Combine(folderPath, coordinates.GetRegionHash(Importer.regionSize).ToString()); + string fullPath = Path.Combine(folderPath, coordinates.GetRegionHash().ToString()); Console.WriteLine(fullPath); - Region retRegion = new Region(coordinates, Importer.regionSize); + Region retRegion = new Region(coordinates); if (!File.Exists(fullPath)) return retRegion;