- Add glamour notifications chat type
This commit is contained in:
@@ -61,6 +61,7 @@ internal class ChatCode
|
||||
ChatType.LoseDebuff => ChatType.GainDebuff,
|
||||
ChatType.System => ChatType.System,
|
||||
ChatType.Alarm => ChatType.System,
|
||||
ChatType.GlamourNotifications => ChatType.System,
|
||||
ChatType.RetainerSale => ChatType.System,
|
||||
ChatType.PeriodicRecruitmentNotification => ChatType.System,
|
||||
ChatType.Sign => ChatType.System,
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
using Dalamud.Game.Config;
|
||||
|
||||
namespace ChatTwo.Code;
|
||||
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1028:Enum Storage should be Int32")]
|
||||
@@ -41,6 +39,7 @@ public enum ChatType : ushort
|
||||
GainDebuff = 47,
|
||||
LoseBuff = 48,
|
||||
LoseDebuff = 49,
|
||||
GlamourNotifications = 54,
|
||||
Alarm = 55,
|
||||
Echo = 56,
|
||||
System = 57,
|
||||
|
||||
@@ -87,6 +87,7 @@ internal static class ChatTypeExt
|
||||
ChatType.Orchestrion,
|
||||
ChatType.MessageBook,
|
||||
ChatType.Alarm,
|
||||
ChatType.GlamourNotifications,
|
||||
}),
|
||||
// Note: ExtraChat linkshells are handled separately in the tab settings
|
||||
// UI.
|
||||
@@ -131,6 +132,7 @@ internal static class ChatTypeExt
|
||||
ChatType.LoseBuff => Language.ChatType_LoseBuff,
|
||||
ChatType.LoseDebuff => Language.ChatType_LoseDebuff,
|
||||
ChatType.Alarm => Language.ChatType_Alarm,
|
||||
ChatType.GlamourNotifications => Language.ChatType_Glamour,
|
||||
ChatType.Echo => Language.ChatType_Echo,
|
||||
ChatType.System => Language.ChatType_System,
|
||||
ChatType.BattleSystem => Language.ChatType_BattleSystem,
|
||||
@@ -258,6 +260,7 @@ internal static class ChatTypeExt
|
||||
case ChatType.PeriodicRecruitmentNotification:
|
||||
case ChatType.Orchestrion:
|
||||
case ChatType.Alarm:
|
||||
case ChatType.GlamourNotifications:
|
||||
case ChatType.RetainerSale:
|
||||
case ChatType.Sign:
|
||||
case ChatType.MessageBook:
|
||||
|
||||
Reference in New Issue
Block a user