mirror of
https://github.com/minetest/minetest.git
synced 2024-11-10 01:33:46 +01:00
Notify player whose password is being changed
This commit is contained in:
parent
3965d432ca
commit
189689716c
@ -326,6 +326,10 @@ void cmd_setclearpassword(std::wostringstream &os,
|
||||
|
||||
ctx->server->setPlayerPassword(playername, password);
|
||||
|
||||
std::wostringstream msg;
|
||||
msg<<ctx->player->getName()<<L" changed your password";
|
||||
ctx->server->notifyPlayer(playername.c_str(), msg.str());
|
||||
|
||||
os<<L"-!- Password change for "<<narrow_to_wide(playername)<<" successful";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user