grrr... kitten... put on your uniform NOW!

This commit is contained in:
deltanedas 2025-03-03 00:09:21 +00:00
parent c978732b91
commit 0bd022a8eb
2 changed files with 4 additions and 1 deletions

View File

@ -14,6 +14,7 @@ using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controllers;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.CustomControls;
using Robust.Shared.Audio; // DeltaV
using Robust.Shared.Configuration;
using Robust.Shared.Input.Binding;
using Robust.Shared.Network;
@ -105,7 +106,8 @@ public sealed class StaffHelpUIController : UIController, IOnSystemChanged<Bwoin
if (other)
{
_audio?.PlayGlobal(_mHelpSound, Filter.Local(), false);
if (_mHelpSound is {} path)
_audio?.PlayGlobal(new SoundPathSpecifier(path), Filter.Local(), false);
_clyde.RequestWindowAttention();
if (!_isMentor)

View File

@ -2,6 +2,7 @@ using Content.Server.Roboisseur.Roboisseur;
using Content.Shared.Item;
using Robust.Shared.GameObjects;
using Robust.Shared.Prototypes;
using System.Collections.Generic;
namespace Content.IntegrationTests.Tests._DV;