From f2c176d3e35cab01a14110a0dfb62023f732ec1c Mon Sep 17 00:00:00 2001 From: Markus Walther Date: Mon, 3 Feb 2025 17:27:24 +0000 Subject: [PATCH] fix demos with UM_RequestDiagnostic --- pkg/demoinfocs/s2_commands.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/demoinfocs/s2_commands.go b/pkg/demoinfocs/s2_commands.go index d0a4b319..fee098c1 100644 --- a/pkg/demoinfocs/s2_commands.go +++ b/pkg/demoinfocs/s2_commands.go @@ -129,6 +129,7 @@ var usrMsgCreators = map[msgs2.EBaseUserMessages]NetMessageCreator{ msgs2.EBaseUserMessages_UM_InventoryResponse: func() proto.Message { return &msgs2.CUserMessage_Inventory_Response{} }, msgs2.EBaseUserMessages_UM_UtilActionResponse: func() proto.Message { return &msgs2.CUserMessage_UtilMsg_Response{} }, msgs2.EBaseUserMessages_UM_DllStatusResponse: func() proto.Message { return &msgs2.CUserMessage_DllStatus{} }, + msgs2.EBaseUserMessages_UM_RequestDiagnostic: func() proto.Message { return &msgs2.CUserMessageRequestDiagnostic{} }, msgs2.EBaseUserMessages_UM_DiagnosticResponse: func() proto.Message { return &msgs2.CUserMessage_Diagnostic_Response{} }, msgs2.EBaseUserMessages_UM_ExtraUserData: func() proto.Message { return &msgs2.CUserMessage_ExtraUserData{} }, msgs2.EBaseUserMessages_UM_NotifyResponseFound: func() proto.Message { return &msgs2.CUserMessage_NotifyResponseFound{} },