summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
Diffstat (limited to 'src/map')
-rw-r--r--src/map/clif.c4
-rw-r--r--src/map/mail.c7
2 files changed, 6 insertions, 5 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 03a2b10b9..753916478 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -11642,9 +11642,7 @@ void clif_parse_Mail_setattach(int fd, struct map_session_data *sd)
return;
flag = mail_setitem(sd, idx, amount);
-
- if (idx > 0)
- clif_Mail_setattachment(fd,idx,flag);
+ clif_Mail_setattachment(fd,idx,flag);
}
/*------------------------------------------
diff --git a/src/map/mail.c b/src/map/mail.c
index 1b9ebb11a..d6fc875a3 100644
--- a/src/map/mail.c
+++ b/src/map/mail.c
@@ -73,11 +73,14 @@ unsigned char mail_setitem(struct map_session_data *sd, int idx, int amount)
{
if (idx == 0)
{ // Zeny Transfer
- if (amount < 0)
+ if( amount < 0 )
return 0;
- if (amount > sd->status.zeny)
+ if( amount > sd->status.zeny )
amount = sd->status.zeny;
+ if( !pc_can_give_items(pc_isGM(sd)) )
+ amount = 0;
+
sd->mail.zeny = amount;
clif_updatestatus(sd, SP_ZENY);
return 0;