From d325b499038cbce19e1fe67704c00c9303cfceab Mon Sep 17 00:00:00 2001 From: Treedbox Date: Wed, 21 Jun 2017 14:05:30 -0300 Subject: [PATCH] Update step14_en.md ; --- src/content/platformer/step14_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/platformer/step14_en.md b/src/content/platformer/step14_en.md index 8122a63..57f9358 100644 --- a/src/content/platformer/step14_en.md +++ b/src/content/platformer/step14_en.md @@ -147,7 +147,7 @@ Here's how the whole thing will look like: PlayState._handleCollisions = function () { // ... this.game.physics.arcade.overlap(this.hero, this.key, this._onHeroVsKey, - null, this) + null, this); }; ```