From d14e83dd1e1ed19e59dd031169b9b4843ed6fe34 Mon Sep 17 00:00:00 2001 From: hydrant Date: Sun, 8 Sep 2019 22:14:58 +0200 Subject: [PATCH] fix sell house --- ReallifeGamemode.Server/Managers/HouseManager.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ReallifeGamemode.Server/Managers/HouseManager.cs b/ReallifeGamemode.Server/Managers/HouseManager.cs index 2ff58da3..e4d8fda1 100644 --- a/ReallifeGamemode.Server/Managers/HouseManager.cs +++ b/ReallifeGamemode.Server/Managers/HouseManager.cs @@ -398,6 +398,9 @@ namespace ReallifeGamemode.Server.Managers player.SendChatMessage("Du hast dein Haus verkauft"); + RemoveHouse(house); + LoadHouse(house); + SendClientHouseData(player, house); } }