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"; 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;