Skip to content

Commit

Permalink
Consts not enums
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks committed Oct 16, 2023
1 parent 52ae3ea commit 06a7ab1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ namespace rollerCoasterBuilder {
//% blockId="rollerCoasterBuilderPlaceEndTrack" weight=99
export function placeTrackEnd() {
placeUnpoweredPoweredRail()
builder.move(SixDirection.Forward, 1)
builder.move(FORWARD, 1)
builder.place(railBase)
builder.move(SixDirection.Up, 1)
builder.move(UP, 1)
builder.place(railBase)
builder.shift(1, -1, 0)
}
Expand Down

0 comments on commit 06a7ab1

Please sign in to comment.