Skip to content

Commit ef39795

Browse files
committed
fix: Turtle.js.teleport ( re: #334 )
1 parent 62af716 commit ef39795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Types/Turtle.js/teleport.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function teleport(x,y) {
22
var penState = this.penDown
33
this.penDown = false
4-
step(x - this.x, y - this.y)
4+
this.step(x - this.x, y - this.y)
55
this.penDown = penState
66
return this
77
}

0 commit comments

Comments
 (0)