Fixed bugreport:6870 buying store zeny limit now displays properly; special thanks to Napster and mkbu95

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16869 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
shennetsind 2012-11-08 00:48:36 +00:00
parent 04be131d82
commit 35884acb9e

View File

@ -15598,7 +15598,7 @@ void clif_buyingstore_update_item(struct map_session_data* sd, unsigned short na
WFIFOW(fd,0) = 0x81b;
WFIFOW(fd,2) = nameid;
WFIFOW(fd,4) = amount; // amount of nameid received
WFIFOW(fd,6) = sd->buyingstore.zenylimit;
WFIFOL(fd,6) = sd->buyingstore.zenylimit;
WFIFOSET(fd,packet_len(0x81b));
}