[11621] Fixed broken DB update when item updated in DB at loading for some reason.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Janu 2011-06-10 22:01:33 +04:00 committed by VladimirMangos
parent 1ffde196ce
commit f1a969d6c7
2 changed files with 2 additions and 2 deletions

View file

@ -502,7 +502,7 @@ bool Item::LoadFromDB(uint32 guidLow, Field* fields, ObjectGuid ownerGuid)
std::ostringstream ss;
for (uint16 i = 0; i < m_valuesCount; ++i)
ss << GetUInt32Value(i) << "";
ss << GetUInt32Value(i) << " ";
stmt.addString(ss);
stmt.addUInt32(GetOwnerGuid().GetCounter());

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11620"
#define REVISION_NR "11621"
#endif // __REVISION_NR_H__