using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ET { public static class OpcodeHotfixHelper { public static void Init() { OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.Frame_ClickMap); OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.M2C_PathfindingResult); OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.C2G_HeartBeat); OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.G2C_HeartBeat); OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.C2G_Ping); OpcodeHelper.AddIgnoreDebugLogMessage(OuterOpcode.G2C_Ping); } } }