From d5102be9891cd7c8f3b47fe63ee4441a724f200d Mon Sep 17 00:00:00 2001 From: cynthiajaz <50100136+cynthiajaz@users.noreply.github.com> Date: Mon, 6 May 2019 11:45:44 +0200 Subject: [PATCH 1/2] Update character.js --- code/character.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/character.js b/code/character.js index 853c771..dff82fc 100755 --- a/code/character.js +++ b/code/character.js @@ -5,8 +5,8 @@ Mario.Character = function() { //these are static in Notch's code... here it doesn't seem necessary - this.Large = false; - this.Fire = false; + this.Large = true; + this.Fire = true; this.Coins = 0; this.Lives = 3; this.LevelString = "none"; From 05bf18d8138f2a60866ea18aabaa02f1d259869d Mon Sep 17 00:00:00 2001 From: RubenRubi3 Date: Mon, 6 May 2019 12:05:20 +0200 Subject: [PATCH 2/2] wow2 --- code/fireball.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/fireball.js b/code/fireball.js index 65a2955..0a402d9 100755 --- a/code/fireball.js +++ b/code/fireball.js @@ -14,8 +14,8 @@ Mario.Fireball = function(world, x, y, facing) { this.Y = y; this.Facing = facing; - this.XPicO = 4; - this.YPicO = 4; + this.XPicO = 5; + this.YPicO = 5; this.YPic = 3; this.XPic = 4; this.Height = 8;