From 7f6b9676e2c12e0e3ff17a57f9a5c85e57ee693c Mon Sep 17 00:00:00 2001 From: hydrant Date: Thu, 9 May 2019 21:48:25 +0200 Subject: [PATCH] fix group vehicles numberplate --- ReallifeGamemode.Server/Entities/ServerVehicle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReallifeGamemode.Server/Entities/ServerVehicle.cs b/ReallifeGamemode.Server/Entities/ServerVehicle.cs index 39203bc0..2891f0eb 100644 --- a/ReallifeGamemode.Server/Entities/ServerVehicle.cs +++ b/ReallifeGamemode.Server/Entities/ServerVehicle.cs @@ -70,7 +70,7 @@ namespace ReallifeGamemode.Server.Entities if (this is GroupVehicle gV) { - numberplate = $"{gV.GroupId}" + numberplate; + numberplate = $"G{gV.GroupId} " + numberplate; } veh.NumberPlate = numberplate;