From 5d3fe86191c09cb92e4cc918893a3fe52fbf43a2 Mon Sep 17 00:00:00 2001 From: aviate Date: Sun, 8 Sep 2019 22:19:16 +0200 Subject: [PATCH] fix --- ReallifeGamemode.Server/Commands/AdminCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Commands/AdminCommands.cs b/ReallifeGamemode.Server/Commands/AdminCommands.cs index d99244a6..c3d026b1 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -2601,7 +2601,7 @@ namespace ReallifeGamemode.Server.Commands foreach (HouseRental rental in dbContext.HouseRentals.Include(r => r.User).Where(r => r.HouseId == nearHouse.Id)) { - rental.User.Client?.SendChatMessage("{!#81F7BE}* Dein Mietvertrag wurde administrativ aufgelöst"); + rental.User.Client?.SendChatMessage("!{#81F7BE}* Dein Mietvertrag wurde administrativ aufgelöst"); dbContext.HouseRentals.Remove(rental); }