diff --git a/ReallifeGamemode.Server/Managers/InteractionManager.cs b/ReallifeGamemode.Server/Managers/InteractionManager.cs index b316ab0d..08cd4e80 100644 --- a/ReallifeGamemode.Server/Managers/InteractionManager.cs +++ b/ReallifeGamemode.Server/Managers/InteractionManager.cs @@ -406,6 +406,12 @@ namespace ReallifeGamemode.Server.Managers return; } + if (factionVehicle.Model == VehicleHash.Policet || factionVehicle.Model == VehicleHash.Burrito3) + { + ChatService.ErrorMessage(player, "Der WT kann nicht verkauft werden"); + return; + } + var backPrice = factionVehicle.BuyPrice; user.Faction.BankAccount.Balance += backPrice;