Skip to content

Commit

Permalink
Removed a compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
msaqib committed May 4, 2024
1 parent c38d89a commit 313821f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/bundle.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/scripts/game/GameScene.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class GameScene extends Scene {
this.container.interactive = true
const up = Tools.Tools.keyboard('ArrowUp')
up.press = this.hero.startJump.bind(this.hero)
const tap = Tools.Tools.tap(this.hero.startJump.bind(this.hero))
App.app.stage.on("tap", this.hero.startJump.bind(this.hero));
this.hero.sprite.once('die', ()=> {
stats.livesRemaining--
if(stats.livesRemaining > 0) {
Expand Down

0 comments on commit 313821f

Please sign in to comment.