diff options
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index ddd1d60c4..2c547f432 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7441,7 +7441,11 @@ atcommand_marry(const int fd, struct map_session_data* sd, return -1; } - return pc_marriage(pl_sd1, pl_sd2); + if (pc_marriage(pl_sd1, pl_sd2) == 0) { + clif_displaymessage(fd, "The marriage has failed.. talk to the judge.."); + return 0; + } else + return -1; } /*========================================== @@ -7461,8 +7465,11 @@ atcommand_divorce(const int fd, struct map_session_data* sd, if (!message || !*message) return -1; - if((pl_sd=map_nick2sd((char *) message)) != NULL) + if((pl_sd=map_nick2sd((char *) message)) != NULL) { return pc_divorce(pl_sd); + clif_displaymessage(fd, "They are now divorced."); + } else + clif_displaymessage(fd, "The divorce has failed.. talk to the judge.."); return 0; } @@ -7493,6 +7500,8 @@ atcommand_rings(const int fd, struct map_session_data* sd, if ((flag = pc_additem((struct map_session_data*)sd, &item_tmp, get_count))) clif_additem((struct map_session_data*)sd, 0, 0, flag); + clif_displaymessage(fd, "You have rings! Give them to the lovers."); + return 0; } |