diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-12-28 09:07:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-14 20:18:10 +0300 |
commit | d5aa551ad1ed0dd9d096d7df1053a17340721e46 (patch) | |
tree | 6d8df2926976cfd86c21e901d6a537dba1d43c08 /src/map | |
parent | fa1cb492536f2853c59a995dc54aa51ead420546 (diff) | |
download | hercules-d5aa551ad1ed0dd9d096d7df1053a17340721e46.tar.gz hercules-d5aa551ad1ed0dd9d096d7df1053a17340721e46.tar.bz2 hercules-d5aa551ad1ed0dd9d096d7df1053a17340721e46.tar.xz hercules-d5aa551ad1ed0dd9d096d7df1053a17340721e46.zip |
Fix weight field in market shops.
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index a0081ba6f..9c6ff9bad 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -19904,7 +19904,7 @@ static void clif_npc_market_open(struct map_session_data *sd, struct npc_data *n packet->list[c].price = shop[i].value; packet->list[c].qty = shop[i].qty; packet->list[c].type = itemtype(id->type); - packet->list[c].weight = id->weight; + packet->list[c].weight = id->weight * 10; c++; } } |