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/script.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/script.c')
-rw-r--r-- | src/map/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c index 9244c00d3..22cd3c8a0 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -3959,7 +3959,7 @@ int buildin_getitem(struct script_state *st) return 0; if((flag = pc_additem(sd,&item_tmp,amount))) { clif_additem(sd,0,0,flag); - if(pc_candrop(sd,nameid)) + if (pc_candrop(sd, &item_tmp)) map_addflooritem(&item_tmp,amount,sd->bl.m,sd->bl.x,sd->bl.y,NULL,NULL,NULL,0); } |