From 26c9d4dc418524c327d0754bb32c6c14375ba527 Mon Sep 17 00:00:00 2001 From: Shauren Date: Mon, 20 Oct 2014 19:25:50 +0200 Subject: Core/Entities: First part of required database changes for migrating guids to 128 bit - all fields storing lowguid must be extended to uint64 --- src/server/scripts/Commands/cs_list.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/scripts/Commands') diff --git a/src/server/scripts/Commands/cs_list.cpp b/src/server/scripts/Commands/cs_list.cpp index f12fbee44b5..035400f60aa 100644 --- a/src/server/scripts/Commands/cs_list.cpp +++ b/src/server/scripts/Commands/cs_list.cpp @@ -282,8 +282,8 @@ public: do { Field* fields = result->Fetch(); - uint32 itemGuid = fields[0].GetUInt32(); - uint32 owner = fields[1].GetUInt32(); + uint64 itemGuid = fields[0].GetUInt64(); + uint64 owner = fields[1].GetUInt64(); uint32 ownerAccountId = fields[2].GetUInt32(); std::string ownerName = fields[3].GetString(); -- cgit v1.2.3