From 17a49a32a99a3074175b2cfa3701ef59f4cc9d0c Mon Sep 17 00:00:00 2001 From: Moses Maximino Cosme II <50815816+mosesintech@users.noreply.github.com> Date: Sun, 6 Oct 2024 11:59:51 -0500 Subject: [PATCH] [#3236] Fix missing word typo in 06.1-actions.mdx (#3237) Closes #3236 The line` this.repeatForever(ctx => {` is now `this.actions.repeatForever(ctx => {`. --- site/docs/07-actions/06.1-actions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/docs/07-actions/06.1-actions.mdx b/site/docs/07-actions/06.1-actions.mdx index 8ac0e3947..6870cdbd8 100644 --- a/site/docs/07-actions/06.1-actions.mdx +++ b/site/docs/07-actions/06.1-actions.mdx @@ -54,7 +54,7 @@ public Ship extends ex.Actor { new ex.Vector(75, 80) ]; // spawn at start point - this.repeatForever(ctx => { + this.actions.repeatForever(ctx => { this.x = path[0].x; this.y = path[0].y; // create action queue