Skip to content

Commit df56765

Browse files
author
ninmonkey
committed
fix: Turtle.js.teleport ( re: #334 )
1 parent ef39795 commit df56765

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Turtle.types.ps1xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8610,7 +8610,7 @@ foreach ($javaScriptProperty in $this.psobject.properties | Sort-Object Name) {
86108610
<Value>function teleport(x,y) {
86118611
var penState = this.penDown
86128612
this.penDown = false
8613-
step(x - this.x, y - this.y)
8613+
this.step(x - this.x, y - this.y)
86148614
this.penDown = penState
86158615
return this
86168616
}</Value>

0 commit comments

Comments
 (0)