Skip to content

Commit 9f1cf0a

Browse files
committed
Merge branch 'hotfix/v23.3.3'
2 parents d76e65e + 9e347fe commit 9f1cf0a

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
*.db
2-
.idea
1+
.vscode/settings.json
32
/node_modules

lgsm/functions/update_minecraft_bedrock.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn_update_localbuild() {
3434
# Gets local build info.
3535
fn_print_dots "Checking local build: ${remotelocation}"
3636
# Uses log file to get local build.
37-
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version //' | tr -d '\000-\011\013-\037')
37+
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version: //' | tr -d '\000-\011\013-\037')
3838
if [ -z "${localbuild}" ]; then
3939
fn_print_error "Checking local build: ${remotelocation}: missing local build info"
4040
fn_script_log_error "Missing local build info"

lgsm/modules/update_minecraft_bedrock.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn_update_localbuild() {
3434
# Gets local build info.
3535
fn_print_dots "Checking local build: ${remotelocation}"
3636
# Uses log file to get local build.
37-
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version //' | tr -d '\000-\011\013-\037')
37+
localbuild=$(grep Version "${consolelogdir}"/* 2> /dev/null | tail -1 | sed 's/.*Version: //' | tr -d '\000-\011\013-\037')
3838
if [ -z "${localbuild}" ]; then
3939
fn_print_error "Checking local build: ${remotelocation}: missing local build info"
4040
fn_script_log_error "Missing local build info"

lgsm/modules/update_papermc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fn_update_remotebuild() {
5151
fi
5252
fi
5353
# Get list of paper builds for specific Minecraft: Java Edition version.
54-
remotebuildresponsemcversion=$(curl -s "${apiurl}/paper/versions/${remotebuildmcversion}")
54+
remotebuildresponsemcversion=$(curl -s "${apiurl}/${paperproject}/versions/${remotebuildmcversion}")
5555
# Get latest paper build for specific Minecraft: Java Edition version.
5656
remotebuildpaperversion=$(echo "${remotebuildresponsemcversion}" | jq -r '.builds[-1]')
5757
# Get various info about the paper build.

linuxgsm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.3.2"
23+
version="v23.3.3"
2424
shortname="core"
2525
gameservername="core"
2626
commandname="CORE"

tests/tests_fctrserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.3.2"
23+
version="v23.3.3"
2424
shortname="fctr"
2525
gameservername="fctrserver"
2626
commandname="CORE"

tests/tests_jc2server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.3.2"
23+
version="v23.3.3"
2424
shortname="jc2"
2525
gameservername="jc2server"
2626
commandname="CORE"

tests/tests_mcserver.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.3.2"
23+
version="v23.3.3"
2424
shortname="mc"
2525
gameservername="mcserver"
2626
commandname="CORE"

tests/tests_ts3server.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then
2020
set -x
2121
fi
2222

23-
version="v23.3.2"
23+
version="v23.3.3"
2424
shortname="ts3"
2525
gameservername="ts3server"
2626
commandname="CORE"

0 commit comments

Comments
 (0)