diff --git a/Content.Client/Guidebook/GuidebookSystem.cs b/Content.Client/Guidebook/GuidebookSystem.cs index 675a025d7a..25c8ead0ec 100644 --- a/Content.Client/Guidebook/GuidebookSystem.cs +++ b/Content.Client/Guidebook/GuidebookSystem.cs @@ -150,7 +150,9 @@ public sealed class GuidebookSystem : EntitySystem if (!TryComp(uid, out var speech) || speech.SpeechSounds is null) return; - _audioSystem.PlayGlobal(speech.SpeechSounds, Filter.Local(), false, speech.AudioParams); + // This code is broken because SpeechSounds isn't a file name or sound specifier directly. + // Commenting out to avoid compile failure with https://github.com/space-wizards/RobustToolbox/pull/5540 + // _audioSystem.PlayGlobal(speech.SpeechSounds, Filter.Local(), false, speech.AudioParams); } public void FakeClientActivateInWorld(EntityUid activated)