diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-06 21:22:20 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-06 21:22:20 +0000 |
commit | 5b1d1678fd03d6c780e933f6e464e3b02a860c0d (patch) | |
tree | 65b746ac53e67d12d9958223e095697bb8f20123 /src/map/clif.c | |
parent | 7afdfd0b4b60c52af9f4e488bb1208a426a5bddc (diff) | |
download | hercules-5b1d1678fd03d6c780e933f6e464e3b02a860c0d.tar.gz hercules-5b1d1678fd03d6c780e933f6e464e3b02a860c0d.tar.bz2 hercules-5b1d1678fd03d6c780e933f6e464e3b02a860c0d.tar.xz hercules-5b1d1678fd03d6c780e933f6e464e3b02a860c0d.zip |
- Rewrote all the item restriction functions so that they will take into account slotted card restrictions as well.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7552 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-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 5f2db6d12..522199539 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1873,7 +1873,7 @@ int clif_selllist(struct map_session_data *sd) { WFIFOW(fd,0)=0xc7;
for(i=0;i<MAX_INVENTORY;i++) {
if(sd->status.inventory[i].nameid > 0 && sd->inventory_data[i]) {
- if (!itemdb_cansell(sd->status.inventory[i].nameid, pc_isGM(sd)))
+ if (!itemdb_cansell(&sd->status.inventory[i], pc_isGM(sd)))
continue;
val=sd->inventory_data[i]->value_sell;
|