Skip to content

Commit

Permalink
Core/Commands: Fix SQL typo in 'list item' command
Browse files Browse the repository at this point in the history
  • Loading branch information
fredimachado authored and Serge Winters committed Nov 6, 2011
1 parent bb057cc commit e6e0180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Chat/Commands/Level3.cpp
Expand Up @@ -529,7 +529,7 @@ bool ChatHandler::HandleListItemCommand(const char *args)
"SELECT ah.itemguid, ah.itemowner, c.account, c.name FROM auctionhouse ah "
"INNER JOIN characters c ON c.guid = ah.itemowner "
"INNER JOIN item_instance ii ON ii.guid = ah.itemguid "
"WHERE ii.itemEntry = '%u' AND LIMIT %u", item_id, count);
"WHERE ii.itemEntry = '%u' LIMIT %u", item_id, count);
}
else
result = QueryResult(NULL);
Expand Down

0 comments on commit e6e0180

Please sign in to comment.