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); }