add: Added .honeypot command

fix: Fixed .betdraw not respecting max bet limit
This commit is contained in:
Kwoth
2024-06-27 04:27:04 +00:00
parent 49d557caec
commit ef471c32bb
20 changed files with 10898 additions and 31 deletions

View File

@@ -0,0 +1,11 @@
using System.ComponentModel.DataAnnotations;
namespace NadekoBot.Db.Models;
public class HoneypotChannel
{
[Key]
public ulong GuildId { get; set; }
public ulong ChannelId { get; set; }
}

View File

@@ -59,6 +59,7 @@ public abstract class NadekoContext : DbContext
public DbSet<TodoModel> Todos { get; set; }
public DbSet<ArchivedTodoListModel> TodosArchive { get; set; }
public DbSet<HoneypotChannel> HoneyPotChannels { get; set; }
// todo add guild colors
// public DbSet<GuildColors> GuildColors { get; set; }