diff --git a/ReallifeGamemode.Server/Managers/HouseManager.cs b/ReallifeGamemode.Server/Managers/HouseManager.cs index 0d2d0a0c..bed7a705 100644 --- a/ReallifeGamemode.Server/Managers/HouseManager.cs +++ b/ReallifeGamemode.Server/Managers/HouseManager.cs @@ -355,6 +355,12 @@ namespace ReallifeGamemode.Server.Managers return; } + if (house.RentalFee == 0) + { + player.SendChatMessage("~r~Dieses Haus hat keinen Platz für Mieter!"); + return; + } + HouseRental newRental = new HouseRental { HouseId = house.Id,