Make the round end sound collection a cvar (#25741)

* Make the round end sound collection a cvar

* Fix comment

* Clarity
This commit is contained in:
DrSmugleaf
2024-03-01 02:08:48 -08:00
committed by GitHub
parent 0ba9df26a0
commit 30ccde0a47
3 changed files with 11 additions and 1 deletions

View File

@@ -392,7 +392,7 @@ namespace Content.Server.GameTicking
// This ordering mechanism isn't great (no ordering of minds) but functions
var listOfPlayerInfoFinal = listOfPlayerInfo.OrderBy(pi => pi.PlayerOOCName).ToArray();
var sound = _audio.GetSound(new SoundCollectionSpecifier("RoundEnd"));
var sound = RoundEndSoundCollection == null ? null : _audio.GetSound(new SoundCollectionSpecifier(RoundEndSoundCollection));
RaiseNetworkEvent(new RoundEndMessageEvent(gamemodeTitle, roundEndText, roundDuration, RoundId,
listOfPlayerInfoFinal.Length, listOfPlayerInfoFinal, LobbySong, sound));