diff --git a/CookieMonster.js b/CookieMonster.js index e2f5e4b..7c5834b 100644 --- a/CookieMonster.js +++ b/CookieMonster.js @@ -997,7 +997,7 @@ CM.Disp.AddMenu = function() { str += '
' + CM.Disp.GetConfigDisplay('ToolWarnCautPos') + '
'; str += '
Statistics
'; str += '
' + CM.Disp.GetConfigDisplay('Stats') + '
'; - str += '
' + CM.Disp.GetConfigDisplay('UpStats') + '
'; + str += '
' + CM.Disp.GetConfigDisplay('UpStats') + '
'; str += '
' + CM.Disp.GetConfigDisplay('SayTime') + '
'; str += '
Other
'; str += '
' + CM.Disp.GetConfigDisplay('Scale') + '
'; @@ -1073,8 +1073,8 @@ CM.Disp.AddMenu = function() { str += '
Halloween Cookies Bought : ' + halloCook + ' of ' + CM.Data.HalloCookies.length + '
'; str += '
Christmas Cookies Bought : ' + christCook + ' of ' + CM.Data.ChristCookies.length + '
'; str += '
Valentine Cookies Bought : ' + valCook + ' of ' + CM.Data.ValCookies.length + '
'; - str += '
Normal Eggs Unlocked : ' + normEggs + ' of ' + Game.eggDrops.length + '
'; - str += '
Rare Eggs Unlocked : ' + rareEggs + ' of ' + Game.rareEggDrops.length + '
'; + str += '
Normal Easter Eggs Unlocked : ' + normEggs + ' of ' + Game.eggDrops.length + '
'; + str += '
Rare Easter Eggs Unlocked : ' + rareEggs + ' of ' + Game.rareEggDrops.length + '
'; if (Game.season == 'christmas') { str += '
Reindeer Reward : ' + Beautify(CM.Cache.SeaSpec) + '
'; } @@ -1086,7 +1086,7 @@ CM.Disp.AddMenu = function() { } CM.Disp.RefreshMenu = function() { - if (CM.Config.UpStats && Game.onMenu == 'stats' && Game.drawT % (Game.fps*3) != 0 && Game.drawT % Game.fps == 0) Game.UpdateMenu(); + if (CM.Config.UpStats && Game.onMenu == 'stats' && Game.drawT % (Game.fps * 3) != 0 && Game.drawT % Game.fps == 0) Game.UpdateMenu(); } CM.Disp.CreateTooltipWarnCaut = function() { @@ -1555,6 +1555,6 @@ CM.ConfigData.SayTime = { label : [ 'Format Time OFF', 'Format Time ON' ], func CM.ConfigData.Scale = { label : [ 'Game\'s Setting Scale', 'Metric', 'Short Scale', 'Scientific Notation' ], func : function() { CM.Disp.RefreshScale(); } }; CM.VersionMajor = '1.0465'; -CM.VersionMinor = '4'; +CM.VersionMinor = '5'; CM.Init();