From 2302f38f94700afa2c41b2abb6d1aec2a0d0eed5 Mon Sep 17 00:00:00 2001 From: Blazico Date: Mon, 23 Mar 2026 18:56:24 +0100 Subject: [PATCH] Removed aggressive friend check --- gpcm/message.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gpcm/message.go b/gpcm/message.go index 61c31b4..39512cd 100644 --- a/gpcm/message.go +++ b/gpcm/message.go @@ -38,11 +38,11 @@ func (g *GameSpySession) bestieMessage(command common.GameSpyCommand) { return } - if !g.isFriendAuthorized(uint32(toProfileId)) { - logging.Error(g.ModuleName, "Destination", aurora.Cyan(toProfileId), "is not even on sender's friend list") - g.replyError(ErrMessageNotFriends) - return - } + // if !g.isFriendAuthorized(uint32(toProfileId)) { + // logging.Error(g.ModuleName, "Destination", aurora.Cyan(toProfileId), "is not even on sender's friend list") + // g.replyError(ErrMessageNotFriends) + // return + // } msg, ok := command.OtherValues["msg"] if !ok || msg == "" {