Sleazy Fork is available in English.
Adding things here and there in the Hentai Heroes game.
< 腳本Hentai Heroes++ (OCD) Season version的回應
Hi, the version 0.42.7 introduce a new bug: "Error in moduleVillain" at load time. (Tested on Harem Heroes on Nutaku)
After digging into the code it's because window.HH_UNIVERSE has a value of 'nutaku' but what is expected is 'hentai' for my test.
window.HH_UNIVERSE
'nutaku'
'hentai'
Replacing all the window.HH_UNIVERSE == 'hentai' with window.HH_UNIVERSE == 'nutaku' seems to fix the issue.
window.HH_UNIVERSE == 'hentai'
window.HH_UNIVERSE == 'nutaku'
登入以回復
Hi, the version 0.42.7 introduce a new bug: "Error in moduleVillain" at load time. (Tested on Harem Heroes on Nutaku)
After digging into the code it's because
window.HH_UNIVERSE
has a value of'nutaku'
but what is expected is'hentai'
for my test.Replacing all the
window.HH_UNIVERSE == 'hentai'
withwindow.HH_UNIVERSE == 'nutaku'
seems to fix the issue.