grrr... kitten... put on your uniform NOW!
This commit is contained in:
parent
c978732b91
commit
0bd022a8eb
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue