.sad, .smch now persist restarts. .usmch added to unset music channel, since destroying a player won't reset it, Added --start-delay option for .race command

This commit is contained in:
Master Kwoth
2017-11-28 02:50:24 +07:00
parent 2ea157902e
commit 60e248c78a
10 changed files with 2168 additions and 10 deletions

View File

@ -0,0 +1,11 @@
namespace NadekoBot.Core.Services.Database.Models
{
public class MusicSettings : DbEntity
{
public int GuildConfigId { get; set; }
public GuildConfig GuildConfig { get; set; }
public bool SongAutoDelete { get; set; } = false;
public ulong? MusicChannelId { get; set; } = null;
}
}