This might work a bit better
Find this line (was line 12787 on my copy)
Code:
MindWare.revealSecret = function(password) {
After the curly bracket add this
So it looks like this
Code:
MindWare.revealSecret = function(password) {return true;
Explanation:
MindWare.revealSecret is a process that hashes the entered password and compares it to a hash stored in the file
The line
Code:
return hash === storedHash;
is what is doing this comparison
return means to tell the process calling this process what the result is and the"hash === storedHash" part is saying if they are exactly equal then it's true, if they are not then it's false
So what we are doing is instead of going through all those steps of checking the entered password, we put the return as the first thing to do in the revealSecret function to immediately "return true;"
That means no matter what is entered the game sees it as correct in all places the password is checked