From fe919251fb02db6d1aa79a051c8c9a2813086920 Mon Sep 17 00:00:00 2001 From: RaidMax Date: Tue, 16 Aug 2022 18:37:35 -0500 Subject: [PATCH] add chat/chatteam event mapping for T7 --- Application/EventParsers/BaseEventParser.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Application/EventParsers/BaseEventParser.cs b/Application/EventParsers/BaseEventParser.cs index a271f858c..4dc14a982 100644 --- a/Application/EventParsers/BaseEventParser.cs +++ b/Application/EventParsers/BaseEventParser.cs @@ -105,6 +105,8 @@ namespace IW4MAdmin.Application.EventParsers { {"say", GameEvent.EventType.Say}, {"sayteam", GameEvent.EventType.Say}, + {"chat", GameEvent.EventType.Say}, + {"chatteam", GameEvent.EventType.Say}, {"K", GameEvent.EventType.Kill}, {"D", GameEvent.EventType.Damage}, {"J", GameEvent.EventType.PreConnect},