Scripts/Commands: Fix a conversion loss at the mute history command

This commit is contained in:
Nyeriah
2014-12-26 16:18:22 -02:00
parent 63c1e265aa
commit 5d4f26d820

View File

@@ -1978,7 +1978,7 @@ public:
static bool HandleMuteInfoHelper(uint32 accountId, char const* accountName, ChatHandler *handler)
{
PreparedStatement *stmt = LoginDatabase.GetPreparedStatement(LOGIN_SEL_ACCOUNT_MUTE_INFO);
stmt->setUInt16(0, accountId);
stmt->setUInt32(0, accountId);
PreparedQueryResult result = LoginDatabase.Query(stmt);
if (!result)