From fcb87eda98c04dcad905a80491c13e32aa0a9cd8 Mon Sep 17 00:00:00 2001 From: Treedbox Date: Wed, 21 Jun 2017 13:45:11 -0300 Subject: [PATCH] Update step09_en.md spiders: data.spiders still not mentioned --- src/content/platformer/step09_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/platformer/step09_en.md b/src/content/platformer/step09_en.md index b010af9..37d1798 100644 --- a/src/content/platformer/step09_en.md +++ b/src/content/platformer/step09_en.md @@ -40,7 +40,7 @@ To collect the coins we will **detect when the main character has touched** any // ... - this._spawnCharacters({hero: data.hero, spiders: data.spiders}); + this._spawnCharacters({hero: data.hero}); // spawn important objects data.coins.forEach(this._spawnCoin, this);