Skip to content

Commit

Permalink
fixed text issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielFitzwilliam committed Nov 18, 2023
1 parent fa90b64 commit 8ef9a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/mario/player.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import {platform} from "./platform.js"
marioStateMessage.innerHTML = "Mario is dead, and it's all your fault."
this.isAlive = 0;
} else {
marioStateMessage.innerHTML = "Mario is alive and well. : " + this.lives
marioStateMessage.innerHTML = "Mario is alive and well. Lives: " + this.lives
this.position.x = 100;
this.position.y = 200;
this.velocity.x = 0;
Expand Down

0 comments on commit 8ef9a5e

Please sign in to comment.