From 33c3abf84bf9a6fb8cd135646d6b4f99322640b5 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Thu, 1 Apr 2021 20:15:17 -0700 Subject: [PATCH] :bug: ChangePass fix didnt push??? --- include/user.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/user.hpp b/include/user.hpp index 43096cb..090ed68 100644 --- a/include/user.hpp +++ b/include/user.hpp @@ -20,7 +20,7 @@ public: const bool state = (password == attempt); if (state) { - password == new_pass; + password = new_pass; } return state; }