Skip to content

Commit

Permalink
fixed turnWW markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
neonerz committed Aug 3, 2020
1 parent df93e1f commit 74e2363
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion beams.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Help Wonder Woman place stained glass over the beams of light to match the color
player.onChat("run", function () {
for (let index = 0; index < 4; index++) {
ww.moveWW(Direction.Forward, 0)
ww.turnWW(Direction.Forward)
ww.turnWW(LEFT_TURN)
ww.placeBlock(BeamsGlass.YellowStainedGlass, Direction.Forward)
}
})
Expand Down
2 changes: 1 addition & 1 deletion crate.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Help Wonder Woman navigate through the crates and find the missing painting piec
```ghost
player.onChat("run", function () {
ww.moveWW(Direction.Forward, 0)
ww.turnWW(Direction.Forward)
ww.turnWW(LEFT_TURN)
if (ww.locatePainting(Direction.Forward)) {
ww.retrievePainting(Direction.Forward)
}
Expand Down
2 changes: 1 addition & 1 deletion final.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The criminal mastermind who orchestrated this heist has hidden among the gala at
```ghost
player.onChat("run", function () {
ww.moveWW(Direction.Forward, 0)
ww.turnWW(Direction.Forward)
ww.turnWW(LEFT_TURN)
for (let index = 0; index < 4; index++) {
}
Expand Down
2 changes: 1 addition & 1 deletion floor.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The colors on the wall seem to match the colors on the floor. Help Wonder Woman
```ghost
player.onChat("run", function () {
ww.moveWW(Direction.Forward, 0)
ww.turnWW(Direction.Forward)
ww.turnWW(LEFT_TURN)
for (let index = 0; index < 4; index++) {
}
Expand Down
2 changes: 1 addition & 1 deletion pxt.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "minecraft-ww1984-md",
"version": "1.6.0",
"version": "1.7.0",
"dependencies": {
"core": "*",
"builder": "*"
Expand Down
2 changes: 1 addition & 1 deletion sneak.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Help Wonder Woman navigate through the room without triggering the alarm by avoi
player.onChat("run", function () {
for (let index = 0; index < 4; index++) {
ww.moveWW(Direction.Forward, 0)
ww.turnWW(Direction.Forward)
ww.turnWW(LEFT_TURN)
ww.takedownGoon(Direction.Forward)
}
})
Expand Down

0 comments on commit 74e2363

Please sign in to comment.