From c9f59ee36bbd0fac13da7f370d5b51db22a85f05 Mon Sep 17 00:00:00 2001 From: Inconnu <177014427+Inconnu1337@users.noreply.github.com> Date: Mon, 6 Jan 2025 21:06:18 +0200 Subject: [PATCH] corvax query fix (#955) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре no cl, no fun ![image](https://github.com/user-attachments/assets/c3ff4f08-8f04-453c-b288-74a95268e436) Co-authored-by: Schrödinger <132720404+Schrodinger71@users.noreply.github.com> --- Content.Client/Corvax/JoinQueue/QueueState.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Client/Corvax/JoinQueue/QueueState.cs b/Content.Client/Corvax/JoinQueue/QueueState.cs index 58ed4df0446..775805304d6 100644 --- a/Content.Client/Corvax/JoinQueue/QueueState.cs +++ b/Content.Client/Corvax/JoinQueue/QueueState.cs @@ -3,6 +3,8 @@ using Robust.Client.GameObjects; using Robust.Client.State; using Robust.Client.UserInterface; +using Robust.Shared.Audio; +using Robust.Client.Audio; using Robust.Shared.Audio.Systems; using Robust.Shared.Player; @@ -12,7 +14,7 @@ public sealed class QueueState : State { [Dependency] private readonly IUserInterfaceManager _userInterfaceManager = default!; [Dependency] private readonly IClientConsoleHost _consoleHost = default!; - [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly AudioSystem _audio = default!; private const string JoinSoundPath = "/Audio/Effects/voteding.ogg";