aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2017-10-03 18:03:57 +0200
committerShauren <shauren.trinity@gmail.com>2017-10-03 18:03:57 +0200
commit4d5eacd3af8406e41f6f335355b1f860f2323ee1 (patch)
tree72bf785977783898fa1fd5a22926ce9e9634f3df /src/server/scripts
parent0b36d80115000ab9d1005e5999aad0c3acd9e041 (diff)
Core/Bnet: Added support for -launcherlogin logins (external client launcher required)
Diffstat (limited to 'src/server/scripts')
-rw-r--r--src/server/scripts/Commands/cs_battlenet_account.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_battlenet_account.cpp b/src/server/scripts/Commands/cs_battlenet_account.cpp
index 32649f1c7d7..2ad831993e8 100644
--- a/src/server/scripts/Commands/cs_battlenet_account.cpp
+++ b/src/server/scripts/Commands/cs_battlenet_account.cpp
@@ -477,7 +477,7 @@ public:
return false;
char* battlenetAccountName = strtok((char*)args, " ");
- PreparedStatement* stmt = LoginDatabase.GetPreparedStatement(LOGIN_SEL_BNET_GAME_ACCOUNT_LIST);
+ PreparedStatement* stmt = LoginDatabase.GetPreparedStatement(LOGIN_SEL_BNET_GAME_ACCOUNT_LIST_SMALL);
stmt->setString(0, battlenetAccountName);
if (PreparedQueryResult accountList = LoginDatabase.Query(stmt))
{