Remove legacy migration

This commit is contained in:
Infi
2024-07-25 15:33:05 +02:00
parent 41c59f6aa0
commit 906eeb5095
11 changed files with 14 additions and 878 deletions
-12
View File
@@ -1,6 +1,3 @@
using Dalamud.Game.Config;
using LiteDB;
namespace ChatTwo.Code;
internal class ChatCode
@@ -22,15 +19,6 @@ internal class ChatCode
Target = SourceFrom(7);
}
[BsonCtor] // Used by LegacyMessageImporter
public ChatCode(ushort raw, ChatType type, ChatSource source, ChatSource target)
{
Raw = raw;
Type = type;
Source = source;
Target = target;
}
internal ChatType Parent() => Type switch
{
ChatType.Say => ChatType.Say,