Skip to content

Commit 09bf2ef

Browse files
authored
fix(Query): wrong integer type (#56)
1 parent 21e8bc6 commit 09bf2ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AuctionHouseBot.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ void AuctionHouseBot::Initialize()
791791
do
792792
{
793793
Field* fields = results->Fetch();
794-
npcItems.push_back(fields[0].Get<uint32>());
794+
npcItems.push_back(fields[0].Get<int32>());
795795

796796
} while (results->NextRow());
797797
}

0 commit comments

Comments
 (0)