From 3923ec143c43f710d2fea75ac5f2c35b0288eff2 Mon Sep 17 00:00:00 2001 From: Claire Mulholland <6277615+Zarinie@users.noreply.github.com> Date: Thu, 8 Sep 2022 17:20:54 +0100 Subject: [PATCH 1/2] Clearing up ambiguity of brick blocks --- python/lesson2/activity3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lesson2/activity3.md b/python/lesson2/activity3.md index 30b4eda..298a582 100644 --- a/python/lesson2/activity3.md +++ b/python/lesson2/activity3.md @@ -8,7 +8,7 @@ blocks.block_with_data(GRASS_BLOCK, 0) ``` ## Step 1 -Write some code to construct a whole staircase, out of **bricks**. You will need to change the **second** and **third** coordinate of the **second** parameter in all of the three `||blocks: place block at position||` commands. You will also need to update the data values in the `||blocks: block with data||` commands. Remember, each data value equals direction with stairs. +Write some code to construct a whole staircase, out of **brick blocks** (brick_block). You will need to change the **second** and **third** coordinate of the **second** parameter in all of the three `||blocks: place block at position||` commands. You will also need to update the data values in the `||blocks: block with data||` commands. Remember, each data value equals direction with stairs. ### ~ tutorialhint Look at the walls to see the east, west, north and south directions. @@ -16,4 +16,4 @@ For data values: 0 = W 1 = E 2 = N -3 = S \ No newline at end of file +3 = S From 100b23c012c6bbd7d4dc9e6dea26b2e9adbd6869 Mon Sep 17 00:00:00 2001 From: Claire Mulholland <6277615+Zarinie@users.noreply.github.com> Date: Thu, 8 Sep 2022 17:22:49 +0100 Subject: [PATCH 2/2] quick edit --- python/lesson2/activity3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lesson2/activity3.md b/python/lesson2/activity3.md index 298a582..92f6988 100644 --- a/python/lesson2/activity3.md +++ b/python/lesson2/activity3.md @@ -8,7 +8,7 @@ blocks.block_with_data(GRASS_BLOCK, 0) ``` ## Step 1 -Write some code to construct a whole staircase, out of **brick blocks** (brick_block). You will need to change the **second** and **third** coordinate of the **second** parameter in all of the three `||blocks: place block at position||` commands. You will also need to update the data values in the `||blocks: block with data||` commands. Remember, each data value equals direction with stairs. +Write some code to construct a whole staircase, out of **brick blocks** (bricks). You will need to change the **second** and **third** coordinate of the **second** parameter in all of the three `||blocks: place block at position||` commands. You will also need to update the data values in the `||blocks: block with data||` commands. Remember, each data value equals direction with stairs. ### ~ tutorialhint Look at the walls to see the east, west, north and south directions.