From d737e6b84a3d245008b74660289ccf4f90147cde Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Sat, 9 Sep 2023 16:39:29 -0700 Subject: [PATCH] Fix not being able to use vehicle horns (#19966) --- Content.Shared/Vehicle/Components/VehicleComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Vehicle/Components/VehicleComponent.cs b/Content.Shared/Vehicle/Components/VehicleComponent.cs index 2874a0d2d1..509581cc32 100644 --- a/Content.Shared/Vehicle/Components/VehicleComponent.cs +++ b/Content.Shared/Vehicle/Components/VehicleComponent.cs @@ -50,7 +50,7 @@ public sealed partial class VehicleComponent : Component /// Use ambient sound component for the idle sound. [DataField("hornAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? HornAction; + public string? HornAction = "ActionVehicleHorn"; /// /// The action for the horn (if any) -- 2.51.2