diff --git a/Content.Server/White/Jukebox/ServerJukeboxSongsSyncManager.cs b/Content.Server/White/Jukebox/ServerJukeboxSongsSyncManager.cs index fadd1b5498..1462f0fe1d 100644 --- a/Content.Server/White/Jukebox/ServerJukeboxSongsSyncManager.cs +++ b/Content.Server/White/Jukebox/ServerJukeboxSongsSyncManager.cs @@ -63,11 +63,6 @@ public sealed class ServerJukeboxSongsSyncManager : JukeboxSongsSyncManager public void CleanUp() { - var files = ContentRoot.GetAllFiles(); - - foreach (var file in files) - { - ContentRoot.RemoveFile(file.relPath); - } + ContentRoot.Clear(); } }