From 51f8a14b67122258b1afd9c4e1227d14e1f7fd2e Mon Sep 17 00:00:00 2001 From: hydrant Date: Sat, 28 Mar 2020 15:37:44 +0100 Subject: [PATCH] /save fvehcile eine fraktion 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 3cac2992..4ea4759d 100644 --- a/ReallifeGamemode.Server/Commands/AdminCommands.cs +++ b/ReallifeGamemode.Server/Commands/AdminCommands.cs @@ -2015,7 +2015,7 @@ namespace ReallifeGamemode.Server.Commands case "fvehicle": if (player.IsInVehicle) { - string fIdStr = option1 + " " + option2; + string fIdStr = (option1 + " " + option2).Trim(); int[] fIds = null; string[] fIdStrs = fIdStr.Split(" ");