summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-12-28 09:07:36 +0300
committerAndrei Karas <akaras@inbox.ru>2019-01-14 20:18:10 +0300
commitd5aa551ad1ed0dd9d096d7df1053a17340721e46 (patch)
tree6d8df2926976cfd86c21e901d6a537dba1d43c08 /src
parentfa1cb492536f2853c59a995dc54aa51ead420546 (diff)
downloadhercules-d5aa551ad1ed0dd9d096d7df1053a17340721e46.tar.gz
hercules-d5aa551ad1ed0dd9d096d7df1053a17340721e46.tar.bz2
hercules-d5aa551ad1ed0dd9d096d7df1053a17340721e46.tar.xz
hercules-d5aa551ad1ed0dd9d096d7df1053a17340721e46.zip
Fix weight field in market shops.
Diffstat (limited to 'src')
-rw-r--r--src/map/clif.c2
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++;
}
}