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

(cherry picked from commit 5d4f26d820)
This commit is contained in:
Nyeriah
2014-12-26 16:27:25 -02:00
parent e66460dad6
commit 6f8a7be120

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)