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