mirror of
https://github.com/NathanHandley/mod-ah-bot-plus.git
synced 2026-01-13 17:19:09 +00:00
fix(Query): wrong integer type (#56)
This commit is contained in:
@@ -791,7 +791,7 @@ void AuctionHouseBot::Initialize()
|
||||
do
|
||||
{
|
||||
Field* fields = results->Fetch();
|
||||
npcItems.push_back(fields[0].Get<uint32>());
|
||||
npcItems.push_back(fields[0].Get<int32>());
|
||||
|
||||
} while (results->NextRow());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user