diff --git a/CookieMonster.js b/CookieMonster.js index 98035400..d1f554e5 100644 --- a/CookieMonster.js +++ b/CookieMonster.js @@ -3751,6 +3751,7 @@ CM.DelayInit = function() { if (Game.prefs.popups) Game.Popup('Cookie Monster version ' + CM.VersionMajor + '.' + CM.VersionMinor + ' loaded!'); else Game.Notify('Cookie Monster version ' + CM.VersionMajor + '.' + CM.VersionMinor + ' loaded!', '', '', 1, 1); + Game.Win('Third-party'); } @@ -3832,7 +3833,7 @@ CM.ConfigDefault = { CM.ConfigPrefix = 'CMConfig'; CM.VersionMajor = '2.031'; -CM.VersionMinor = '1'; +CM.VersionMinor = '2'; /******* * Sim * diff --git a/src/Main.js b/src/Main.js index b95cd58a..657bdd88 100644 --- a/src/Main.js +++ b/src/Main.js @@ -252,6 +252,7 @@ CM.DelayInit = function() { if (Game.prefs.popups) Game.Popup('Cookie Monster version ' + CM.VersionMajor + '.' + CM.VersionMinor + ' loaded!'); else Game.Notify('Cookie Monster version ' + CM.VersionMajor + '.' + CM.VersionMinor + ' loaded!', '', '', 1, 1); + Game.Win('Third-party'); } @@ -333,5 +334,5 @@ CM.ConfigDefault = { CM.ConfigPrefix = 'CMConfig'; CM.VersionMajor = '2.031'; -CM.VersionMinor = '1'; +CM.VersionMinor = '2';