Skip to content
This repository has been archived by the owner on Dec 20, 2022. It is now read-only.

Commit

Permalink
enhanced configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesus-QC committed Aug 14, 2022
1 parent 478efae commit 6bf9859
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AudioPlayer/Config.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.ComponentModel;
using AudioPlayer.Core.Structures;
using Exiled.API.Features;
using Exiled.API.Interfaces;

namespace AudioPlayer
Expand All @@ -14,7 +15,7 @@ public class Config : IConfig
public string AudioName { get; set; } = null;

[Description("Special Events Automatic Music, blank to disable.")]
public List<AudioFile> LobbyPlaylist { get; set; } = new () { new AudioFile() };
public List<AudioFile> LobbyPlaylist { get; set; } = new () { new AudioFile(), new AudioFile(){Path = System.IO.Path.Combine(Paths.Configs, "Audios", "test2.mp3")} };
public AudioFile MtfSpawnMusic { get; set; } = new ();
public AudioFile ChaosSpawnMusic { get; set; } = new ();
}
Expand Down

0 comments on commit 6bf9859

Please sign in to comment.