This will fix the no pregnancy bug in AW v28 and/or v29 This is an update due to huge derp that resulted in me giving only 1/2 the fix... Open the game .html file in notepad or similar text editor. (Note: attempting to open the game file in MS Word or complex text/code editor will probably cause a crash) Search for the following text in the file. (The default keyboard shortcut to search is Ctrl+F) function(e,t){for(var a=0,n=t.length-1;0<=n;n--)e<=n&&(a=n); if you do not find that text, instead search for: function(e,t){for(var a=0,n=t.length-1;0<=n;n--)e<=n&&(a=t[n]); replace the above text with: function(e,t){for(var a=0,n=t.length-1;0<=n;n--)e<=t[n]&&(a=t[n]); Specifically, you're replacing e<=n with e<=t[n] and a=n with a=t[n] it was a very simple mistake, which can be the hardest to spot sometimes :D Save the file, and enjoy!