From f860ca9b9d32fdb69e09cbe96165de2e96505be8 Mon Sep 17 00:00:00 2001 From: C9Glax <13404778+C9Glax@users.noreply.github.com> Date: Fri, 3 Feb 2023 23:35:05 +0100 Subject: [PATCH] maintaining --- Server/Server.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;