refactor: replace CursorBot references with MCCBot in pathing scripts and documentation

This commit is contained in:
BruceChen 2026-04-14 17:15:33 +00:00
parent 2f65594077
commit 2d8c8b2888
7 changed files with 11 additions and 11 deletions

View file

@ -372,7 +372,7 @@ git commit -m "fix: align sprint jump landing recovery with turn braking"
# - run_short_descend_into_turn
# Each function must:
# 1. build the exact world with mc-rcon
# 2. teleport CursorBot
# 2. teleport MCCBot
# 3. send the pathfind command
# 4. fail immediately on any "[PathExec] Segment .* FAILED"
# 5. assert the final location or assert explicit planner rejection

View file

@ -1489,7 +1489,7 @@ mc-start "$VERSION" >/dev/null
if ! tmux has-session -t "$SESSION" 2>/dev/null; then
tmux new-session -d -s "$SESSION" -x 160 -y 50 \
"cd '$MCC_REPO' && dotnet run --project MinecraftClient -c Release --no-build -- '$CFG' CursorBot - localhost:25565; echo '=== MCC EXITED ==='; sleep 600"
"cd '$MCC_REPO' && dotnet run --project MinecraftClient -c Release --no-build -- '$CFG' MCCBot - localhost:25565; echo '=== MCC EXITED ==='; sleep 600"
sleep 5
fi
@ -1500,7 +1500,7 @@ sleep 1
echo "== Flat final stop =="
mc-rcon "fill 95 79 95 115 79 105 stone" >/dev/null
mc-rcon "fill 95 80 95 115 85 105 air" >/dev/null
mc-rcon "tp CursorBot 100.5 80 100.5" >/dev/null
mc-rcon "tp MCCBot 100.5 80 100.5" >/dev/null
sleep 2
send_mcc "/goto 103 80 100"
sleep 5
@ -1514,7 +1514,7 @@ mc-rcon "fill 118 79 108 126 79 112 air" >/dev/null
mc-rcon "setblock 120 79 110 stone" >/dev/null
mc-rcon "setblock 123 79 110 stone" >/dev/null
mc-rcon "setblock 123 79 111 stone" >/dev/null
mc-rcon "tp CursorBot 120.5 80 110.5" >/dev/null
mc-rcon "tp MCCBot 120.5 80 110.5" >/dev/null
sleep 2
send_mcc "/goto 123 80 111"
sleep 6

View file

@ -72,11 +72,11 @@ run_test() {
mcc-cmd "respawn" 2>/dev/null || true
sleep 0.5
mc-rcon "gamemode creative CursorBot" >/dev/null 2>&1
mc-rcon "gamemode creative MCCBot" >/dev/null 2>&1
sleep 0.3
mc-rcon "tp CursorBot ${start_x}.5 ${start_y} ${start_z}.5" >/dev/null 2>&1
mc-rcon "tp MCCBot ${start_x}.5 ${start_y} ${start_z}.5" >/dev/null 2>&1
sleep 2
mc-rcon "gamemode survival CursorBot" >/dev/null 2>&1
mc-rcon "gamemode survival MCCBot" >/dev/null 2>&1
sleep 1
: > "$LOG"

View file

@ -7,7 +7,7 @@ source "$REPO_ROOT/tools/mcc-env.sh"
VERSION="${1:-1.21.11-Vanilla}"
SESSION="mcc-pathing-jump-combos"
USERNAME="CursorBot"
USERNAME="MCCBot"
SESSION_ROOT="$(_mcc_session_root "$SESSION")"
LOG="$(_mcc_session_log_file "$SESSION")"

View file

@ -7,7 +7,7 @@ source "$REPO_ROOT/tools/mcc-env.sh"
VERSION="${1:-1.21.11-Vanilla}"
SESSION="mcc-pathing-long-routes"
USERNAME="CursorBot"
USERNAME="MCCBot"
SESSION_ROOT="$(_mcc_session_root "$SESSION")"
LOG="$(_mcc_session_log_file "$SESSION")"

View file

@ -7,7 +7,7 @@ source "$REPO_ROOT/tools/mcc-env.sh"
VERSION="${1:-1.21.11-Vanilla}"
SESSION="mcc-pathing-template"
USERNAME="CursorBot"
USERNAME="MCCBot"
SESSION_ROOT="$(_mcc_session_root "$SESSION")"
LOG="$(_mcc_session_log_file "$SESSION")"

View file

@ -7,7 +7,7 @@ source "$REPO_ROOT/tools/mcc-env.sh"
VERSION="${1:-1.21.11-Vanilla}"
SESSION="mcc-brake-test"
USERNAME="CursorBot"
USERNAME="MCCBot"
SESSION_ROOT="$(_mcc_session_root "$SESSION")"
LOG="$(_mcc_session_log_file "$SESSION")"