From baf3427609480fe4f458d250399dc05fb2d730b8 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Wed, 26 Nov 2025 22:53:05 -0800 Subject: fix: typo --- mcsh.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcsh.sh b/mcsh.sh index 62837c9..05f920d 100755 --- a/mcsh.sh +++ b/mcsh.sh @@ -75,7 +75,7 @@ function auth ( res="$(curl -s -X POST "$XSTS_TOKEN_URL" -H 'Content-Type: application/json' -H 'Accept: application/json' -d "$req")" xsts_token="$(<<<"$res" jq -r '.Token')" - printf 'authenticating with mincraft\n' >&2 + printf 'authenticating with minecraft\n' >&2 req="$(jq -n --arg xuid "$xuid" --arg token "$xsts_token" '{"identityToken": "XBL3.0 x=\($xuid);\($token)"}')" res="$(curl -s -X POST "$MC_AUTH_URL" -H 'Content-Type: application/json' -H 'Accept: application/json' -d "$req")" mc_token="$(<<<"$res" jq -r '.access_token')" -- cgit v1.2.3