Core/DBLayer: Fixed copy paste mistake in 8e2634b2b4

This commit is contained in:
joschiwald
2017-01-16 15:09:14 +01:00
parent 2bc17e0880
commit bc0d82a81e

View File

@@ -552,7 +552,7 @@ void WorldSession::HandleCharCreateOpcode(WorldPackets::Character::CreateCharact
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_SEL_SUM_CHARS);
stmt->setUInt32(0, GetAccountId());
queryCallback.SetNextQuery(LoginDatabase.AsyncQuery(stmt));
queryCallback.SetNextQuery(CharacterDatabase.AsyncQuery(stmt));
})
.WithChainingPreparedCallback([this, createInfo](QueryCallback& queryCallback, PreparedQueryResult result)
{