diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-03 22:25:57 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-12-03 22:25:57 +0000 |
commit | 79b36cc86e1c1c596e1b23874f2c5acf947807bc (patch) | |
tree | 257067623f2e8258e8d444a7ec795899b2e770f1 /src/map/mail.c | |
parent | 0dd21624a69cf05d3c25f4d76500b3d8366a5c62 (diff) | |
download | hercules-79b36cc86e1c1c596e1b23874f2c5acf947807bc.tar.gz hercules-79b36cc86e1c1c596e1b23874f2c5acf947807bc.tar.bz2 hercules-79b36cc86e1c1c596e1b23874f2c5acf947807bc.tar.xz hercules-79b36cc86e1c1c596e1b23874f2c5acf947807bc.zip |
- Added a fix to prevent missing a mail attachment is map servers disconnect from char server.
- Fixed the sprite of Wing of Victory.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11855 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mail.c')
-rw-r--r-- | src/map/mail.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/map/mail.c b/src/map/mail.c index 9d2f4375e..a08d04c0d 100644 --- a/src/map/mail.c +++ b/src/map/mail.c @@ -154,4 +154,20 @@ int mail_openmail(struct map_session_data *sd) return 0; } +void mail_deliveryfail(struct map_session_data *sd, struct mail_message *msg) +{ + nullpo_retv(sd); + nullpo_retv(msg); + + pc_additem(sd, &msg->item, msg->item.amount); + + if( msg->zeny > 0 ) + { + sd->status.zeny += msg->zeny; + clif_updatestatus(sd, SP_ZENY); + } + + clif_Mail_send(sd->fd, true); +} + #endif |