diff --git a/ReallifeGamemode.Server.Core/Managers/HouseManager.cs b/ReallifeGamemode.Server.Core/Managers/HouseManager.cs index 7c154b37..7e15ba0d 100644 --- a/ReallifeGamemode.Server.Core/Managers/HouseManager.cs +++ b/ReallifeGamemode.Server.Core/Managers/HouseManager.cs @@ -193,6 +193,7 @@ namespace ReallifeGamemode.Server.Core.Managers .Include(h => h.BankAccount) .Include(h => h.Rentals) .ToList() + .Where(h => h.Position.DistanceTo(position) < 5) .OrderBy(h => h.Position.DistanceTo(position)) .FirstOrDefault(); }