diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-07 17:16:53 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-07 17:16:53 +0000 |
commit | 7496915ff909733618b011ca06ee27ae7a098f2b (patch) | |
tree | 4291f623b63f1d03fbb14d4cb7dc67dab70798af /src/map/mail.c | |
parent | a78edf2b3c8b22ff202ee43261f89c42e2313657 (diff) | |
download | hercules-7496915ff909733618b011ca06ee27ae7a098f2b.tar.gz hercules-7496915ff909733618b011ca06ee27ae7a098f2b.tar.bz2 hercules-7496915ff909733618b011ca06ee27ae7a098f2b.tar.xz hercules-7496915ff909733618b011ca06ee27ae7a098f2b.zip |
- Some updates on the mail system packets [Zephyrus]
- Corrected the mail database structure on main.sql
- TODO: find what happens when you cannot receive an emailed item due to weight problems.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11692 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mail.c')
-rw-r--r-- | src/map/mail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mail.c b/src/map/mail.c index e1c006a0a..e7cd6b2d6 100644 --- a/src/map/mail.c +++ b/src/map/mail.c @@ -78,7 +78,7 @@ unsigned char mail_setitem(struct map_session_data *sd, int idx, int amount) sd->mail.index = idx; sd->mail.nameid = sd->status.inventory[idx].nameid; sd->mail.amount = amount; - clif_delitem(sd, idx, amount); + return 0; } } |