🐛 ChangePass fix didnt push???

This commit is contained in:
EntireTwix 2021-04-01 20:15:17 -07:00
parent ed04fb556f
commit 33c3abf84b

View file

@ -20,7 +20,7 @@ public:
const bool state = (password == attempt);
if (state)
{
password == new_pass;
password = new_pass;
}
return state;
}