Assorted improvements.

- Move BotExtension to Core.
- Update BotFramework
- Fix Fun commands.
- Remove ChatManagement dependency from Entertainment.
This commit is contained in:
West14
2022-01-03 14:58:53 +02:00
parent fad01168aa
commit b99614868b
8 changed files with 57 additions and 31 deletions
+1 -5
View File
@@ -1,13 +1,9 @@
using Kruzya.TelegramBot.Core;
using West.TelegramBot.ChatManagement;
namespace West.Entertainment
{
public class Entertainment : Module
{
public Entertainment(Core core) : base(core)
{
// core.EnsureLoaded<ChatManagement>();
}
public Entertainment(Core core) : base(core) { }
}
}