From 1b7daaa46d9db7589094b9e0181d22b9a9f9f21f Mon Sep 17 00:00:00 2001 From: hydrant Date: Mon, 11 May 2020 11:40:56 +0200 Subject: [PATCH] =?UTF-8?q?WT=20Starten:=20Maximalen=20Abstand=20zum=20WT?= =?UTF-8?q?=20auf=2080=20erh=C3=B6ht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ReallifeGamemode.Server/WeaponDeal/WeaponDealManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/WeaponDeal/WeaponDealManager.cs b/ReallifeGamemode.Server/WeaponDeal/WeaponDealManager.cs index 43cf4d7f..d981a8e4 100644 --- a/ReallifeGamemode.Server/WeaponDeal/WeaponDealManager.cs +++ b/ReallifeGamemode.Server/WeaponDeal/WeaponDealManager.cs @@ -37,7 +37,7 @@ namespace ReallifeGamemode.Server.WeaponDeal Vehicle fVeh = VehicleManager.GetVehicleFromServerVehicle(factionVehicle); - if (fVeh.Position.DistanceTo(client.Position) > 50) + if (fVeh.Position.DistanceTo(client.Position) > 80) { ChatService.ErrorMessage(client, "Der Transporter ist zu weit entfernt"); return;