From b72394566a05610faa45f6e131e8d9c542fe2b24 Mon Sep 17 00:00:00 2001 From: mkwcat Date: Tue, 28 Nov 2023 22:07:54 -0500 Subject: [PATCH] Common: Change InvalidGameSpyCommand string --- common/gamespy_message.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/gamespy_message.go b/common/gamespy_message.go index d062b75..2bc1591 100644 --- a/common/gamespy_message.go +++ b/common/gamespy_message.go @@ -13,7 +13,7 @@ type GameSpyCommand struct { } var ( - InvalidGameSpyCommand = errors.New("Invalid command received") + InvalidGameSpyCommand = errors.New("invalid GameSpy command received") ) func ParseGameSpyMessage(msg string) ([]GameSpyCommand, error) {