From bc454565fcb5e761554d08e85c092d0aa0d30b46 Mon Sep 17 00:00:00 2001 From: Rob B Date: Wed, 12 Mar 2025 19:59:05 -0700 Subject: [PATCH] Update invitation accept fail message to mention checking for repo access --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 7e313e3..967fa69 100644 --- a/main.go +++ b/main.go @@ -316,7 +316,7 @@ func acceptInvitation(client *github.Client) error { } if !accepted { - return errors.New("Could not find your invitation. Check your email to see if you received one.") + return errors.New("Could not find your invitation. Check your email to see if you received one. Also, check if you already have access to the custom engine repository (https://github.com/satisfactorymodding/UnrealEngine), in which case your account is already linked and you don't need to use the linker.") } return nil