From 29d15976b2d8c11aaa9c28029257f9986bad181f Mon Sep 17 00:00:00 2001 From: hydrant Date: Tue, 30 Jul 2019 13:12:55 +0200 Subject: [PATCH] fix house menu --- ReallifeGamemode.Server/Managers/HouseManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Managers/HouseManager.cs b/ReallifeGamemode.Server/Managers/HouseManager.cs index 5c3d62c1..9b164021 100644 --- a/ReallifeGamemode.Server/Managers/HouseManager.cs +++ b/ReallifeGamemode.Server/Managers/HouseManager.cs @@ -129,7 +129,7 @@ namespace ReallifeGamemode.Server.Managers House house = GetHouseById(houseId); User user = client.GetUser(); - client.SendChatMessage("SERVER:ShowHouseMenu"); + client.TriggerEvent("SERVER:ShowHouseMenu"); SendClientHouseData(client, house); }