NadekoBot/NadekoBot/Classes/IncidentsHandler.cs
Kwoth 670a8ddf82 Revert "rewrote database stuff to be async, hopefuly it works properly."
This reverts commit 11ed1500ba25164a9260957e36d33a50e98c72ff.
2016-07-30 01:21:48 +02:00

26 lines
722 B
C#

using NadekoBot.DataModels;
using System;
namespace NadekoBot.Classes
{
internal static class IncidentsHandler
{
public static void Add(ulong serverId, ulong channelId, string text)
{
var def = Console.ForegroundColor;
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine($"INCIDENT: {text}");
Console.ForegroundColor = def;
var incident = new Incident
{
ChannelId = (long)channelId,
ServerId = (long)serverId,
Text = text,
Read = false
};
DbHandler.Instance.Connection.Insert(incident, typeof(Incident));
}
}
}