Skip to content

Commit 8a82d58

Browse files
authored
Fix incorrect agent place back default
Fix for 825533
1 parent 78dbb49 commit 8a82d58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

computing/unit-2/lesson-2.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Add another ``||Agent:set active slot||``, and set it to **3**. This will select
227227
Add an ``||Agent:agent destroy [forward]||`` block. Add it below the last block and change its value to **right**. This will make your Agent remove the block immediately to the right making a hole in the wall, ready for a window.
228228

229229
## Step 16
230-
Now select the new code block, ``||Agent:agent place [back]||`` and use the drop-down menu to change it to **right**. This will code your Agent to place a **Glass Pane** in the gap left after destroying the wall block.
230+
Now select the new code block, ``||Agent:agent place [forward]||`` and use the drop-down menu to change it to **right**. This will code your Agent to place a **Glass Pane** in the gap left after destroying the wall block.
231231

232232
### ~ tutorialhint
233233
``` blocks
@@ -379,7 +379,7 @@ player.onChat("build_a_structure.", function () {
379379

380380

381381
## Step 21
382-
Return to the ``||Agent:AGENT||`` toolbox drawer and add another ``||Agent:agent place [back]||`` code block and change it to **right**. This will place your door and complete your building. Test your code!
382+
Return to the ``||Agent:AGENT||`` toolbox drawer and add another ``||Agent:agent place [forward]||`` code block and change it to **right**. This will place your door and complete your building. Test your code!
383383

384384
### ~ tutorialhint
385385
``` blocks
@@ -416,4 +416,4 @@ player.onChat("build_a_structure.", function () {
416416
agent.setSlot(4)
417417
agent.place(RIGHT)
418418
})
419-
```
419+
```

0 commit comments

Comments
 (0)