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