From 4c0a76eca246b5f899adf96c307b08c445324a3d Mon Sep 17 00:00:00 2001 From: James Dougan Date: Wed, 1 Sep 2021 19:51:32 +0100 Subject: [PATCH] Update to task 2 wording --- tutorials/seymour-island/task2.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tutorials/seymour-island/task2.md b/tutorials/seymour-island/task2.md index 064e56f..b70d07a 100644 --- a/tutorials/seymour-island/task2.md +++ b/tutorials/seymour-island/task2.md @@ -7,6 +7,7 @@ ## Step 1 @unplugged ![Side task](https://raw.githubusercontent.com/CausewayDigital/Minecraft-EE-MakeCode/main/tutorials/seymour-island/images/seymour_task_2.png) +The mine ahead is too dangerous for a miner to go in. Do you think your Agent is up for the task? Let's use the agent to dig a mine shaft ahead. First, why not try breaking the block ahead of the Agent, using ``||agent:agent destroy forward||``. Place your code within the ``||player: on start||`` section, then click the **play** button in the bottom right. @@ -18,7 +19,7 @@ agent.destroy(FORWARD) ## Step 2 Lets now combine that with an ``||agent:agent move up||`` command, followed by another ``||agent:agent destroy forward||``. -Can you try getting your Agent to break the first column of 3 stone blocks? +Can you try getting your Agent to break the first column of **3** stone blocks? ```blocks agent.destroy(FORWARD) @@ -48,8 +49,6 @@ for (let index = 0; index < 3; index++) { ``` - - ## Step 4 Finally, using what you have learnt so far, can you use another ``||loops:Repeat 7 times do||`` to dig out the rest of the mine shaft right up to the golden block at the end?