From e48dcbd9738616af33730b8420c3c7f3bfeb49cb Mon Sep 17 00:00:00 2001 From: mhhong Date: Thu, 28 May 2026 16:38:14 +0900 Subject: [PATCH] Fix Steering Block --- src/playground/blocks/hardware/block_altino_neo.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/playground/blocks/hardware/block_altino_neo.js b/src/playground/blocks/hardware/block_altino_neo.js index b5c5c34117..690ad1f497 100644 --- a/src/playground/blocks/hardware/block_altino_neo.js +++ b/src/playground/blocks/hardware/block_altino_neo.js @@ -458,21 +458,21 @@ Entry.AltinoNeo.getBlocks = function() { if (direction == 'Center') { sq.steering = 0; } else if (direction == 'Left5') { - sq.steering = 0xe0; + sq.steering = -31; } else if (direction == 'Left10') { - sq.steering = 0xc0; + sq.steering = -63; } else if (direction == 'Left15') { - sq.steering = 0xa1; + sq.steering = -95; } else if (direction == 'Left20') { - sq.steering = 0x81; + sq.steering = -127; } else if (direction == 'Right5') { sq.steering = 31; } else if (direction == 'Right10') { sq.steering = 63; } else if (direction == 'Right15') { - sq.steering = 94; + sq.steering = 95; } else if (direction == 'Right20') { - sq.steering = 126; + sq.steering = 127; } return script.callReturn(); },