summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
authorCiaran Gultnieks <ciaran@ciarang.com>2011-05-22 21:09:12 +0100
committerCiaran Gultnieks <ciaran@ciarang.com>2011-05-22 21:09:12 +0100
commita8a3271470299820c5322523dc439415bc1ff8a0 (patch)
treea397578ce7032efe25298b4c653a3dcebd180579 /src/game.cpp
parente0329a3caee863a2302748f710401bfc0dfa78db (diff)
downloadminetest-a8a3271470299820c5322523dc439415bc1ff8a0.tar.gz
minetest-a8a3271470299820c5322523dc439415bc1ff8a0.tar.bz2
minetest-a8a3271470299820c5322523dc439415bc1ff8a0.zip
Added the ability to change your password (via pause menu)
--HG-- extra : rebase_source : e8ec407f60711d42d33be4811b2880088f617b5b
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 99e08b7bf..e82e4cd8e 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -22,6 +22,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "client.h"
#include "server.h"
#include "guiPauseMenu.h"
+#include "guiPasswordChange.h"
#include "guiInventoryMenu.h"
#include "guiTextInputMenu.h"
#include "guiFurnaceMenu.h"
@@ -912,6 +913,13 @@ void the_game(
break;
}
+ if(g_gamecallback->changepassword_requested)
+ {
+ (new GUIPasswordChange(guienv, guiroot, -1,
+ &g_menumgr, &client))->drop();
+ g_gamecallback->changepassword_requested = false;
+ }
+
/*
Process TextureSource's queue
*/