diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-01-25 18:37:56 -0200 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2013-01-25 18:37:56 -0200 |
commit | 24678bdccf0c035ada2aec46dc89055beec9674c (patch) | |
tree | 51da754de0254605ecd1c9589165adcd646bf237 | |
parent | 6864c961e1cfad9650d2343bf94a9e6b197360e3 (diff) | |
download | hercules-24678bdccf0c035ada2aec46dc89055beec9674c.tar.gz hercules-24678bdccf0c035ada2aec46dc89055beec9674c.tar.bz2 hercules-24678bdccf0c035ada2aec46dc89055beec9674c.tar.xz hercules-24678bdccf0c035ada2aec46dc89055beec9674c.zip |
Fixed bugreport:7218, where unique id was implemented and they forgot that more load was being retrieved after, so card0 wasn't being loaded properly.
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
-rw-r--r-- | src/char/int_auction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/int_auction.c b/src/char/int_auction.c index 34aed5bf7..06e238667 100644 --- a/src/char/int_auction.c +++ b/src/char/int_auction.c @@ -224,7 +224,7 @@ void inter_auctions_fromsql(void) for( i = 0; i < MAX_SLOTS; i++ ) { - Sql_GetData(sql_handle, 14 + i, &data, NULL); + Sql_GetData(sql_handle, 15 + i, &data, NULL); item->card[i] = atoi(data); } |