summaryrefslogtreecommitdiff
path: root/src/net/accountserver/account.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/accountserver/account.cpp')
-rw-r--r--src/net/accountserver/account.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/net/accountserver/account.cpp b/src/net/accountserver/account.cpp
index daf94a65..16f81f44 100644
--- a/src/net/accountserver/account.cpp
+++ b/src/net/accountserver/account.cpp
@@ -68,9 +68,14 @@ void Net::AccountServer::Account::selectCharacter(char slot)
Net::AccountServer::connection->send(msg);
}
-void Net::AccountServer::Account::unregister()
+void Net::AccountServer::Account::unregister(const std::string &username,
+ const std::string &password)
{
MessageOut msg(PAMSG_UNREGISTER);
+
+ msg.writeString(username);
+ msg.writeString(password);
+
Net::AccountServer::connection->send(msg);
}