Skip to content

Commit

Permalink
Merge pull request #35 from CausewayDigital/master
Browse files Browse the repository at this point in the history
Fix for Python 101 Makecode lesson 2 bug
  • Loading branch information
gbaman authored Sep 8, 2022
2 parents 253b085 + 100b23c commit efbf952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lesson2/activity3.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ 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** (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.
For data values:
0 = W
1 = E
2 = N
3 = S
3 = S

0 comments on commit efbf952

Please sign in to comment.